Simple Audio Voice Sound Recorder

Simple Audio Voice Sound Recorder let's you easily record & share your voice with everyone!

什么是Simple Audio Voice Sound Recorder?

Simple Audio Voice Sound Recorder是由rasel-tend开发的Chrome扩展程序,该扩展的主要功能是“Simple Audio Voice Sound Recorder let's you easily record & share your voice with everyone!”。

扩展截图

screenshot

下载Simple Audio Voice Sound Recorder扩展crx文件

下载Simple Audio Voice Sound Recorder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        As the name suggests it is a simple tool to record your voice, audio or any other sound using your PC's microphone.
You can then listen to your recording and decide to download or discard it. 
You can record and download your audio in .webm format.
You may also convert the webm file to MP3 format using mp3 converter link given in the footer of the extension window.

Update Ver: 1.0.5: Add new features, share profiles on social networks such as: LinkedIn, Twitter and Facebook (automatically share using post api). By automatically uploading the recording file to file.io and then sharing the file download link.                    

扩展基本信息

名称 Simple Audio Voice Sound Recorder Simple Audio Voice Sound Recorder
ID jijkkddhochpdbhnmhmjdnmeopoehmih
官方URL https://chromewebstore.google.com/detail/simple-audio-voice-sound/jijkkddhochpdbhnmhmjdnmeopoehmih
简介 Simple Audio Voice Sound Recorder let's you easily record & share your voice with everyone!
文件大小 81.97 KB
安装次数 41,050
当前版本 1.2
更新时间 2023-10-12
上架时间 2019-07-04
评分 3.41/5 共46次评分
开发者 rasel-tend
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.chromecrxstore.com/audiorecorder/
隐私政策页面URL https://sites.google.com/view/policy-infomation/home
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Audio Voice Sound Recorder",
    "short_name": "sound-audio-recorder",
    "description": "Simple Audio Voice Sound Recorder let's you easily record & share your voice with everyone!",
    "version": "1.2",
    "action": {
        "default_icon": "16.png",
        "default_title": "Voice Recorder"
    },
    "background": {
        "service_worker": "\/js\/background.bundle.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content-script.bundle.js"
            ],
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/*.file.io\/*",
                "*:\/\/file.io\/*"
            ]
        }
    ],
    "commands": {
        "_execute_action": []
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/*.file.io\/*",
        "*:\/\/file.io\/*"
    ]
}