VocalBird: Record and share audio messages

Record and share audio messages from any page.

VocalBird: Record and share audio messages란 무엇입니까?

VocalBird: Record and share audio messages은(는) https://vocalbird.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record and share audio messages from any page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

VocalBird: Record and share audio messages 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Record audio messages from anywhere on the web, thanks to our free Chrome extension. It's fast, effective, and free!

★ Better than standard text messages
Sending audio messages not only saves typing and reading time, but it is also a lot more personal and strengthens relationships.

★ Works anywhere
Once you're finished recording, we provide you with a link to your message. You can share this link wherever you want: Slack, Basecamp, Asana, Twitter, etc. You don't have to wait for a platform to support audio messages.

★ Simple
Once installed, a simple click on the bird icon in the toolbar will show a recording popup. Once you're done, we'll give you a link that you can share with as many recipients as you like.

★ Private
The link to your private message can't be guessed.

★ Get started
The extension requires an account you'll be able to create immediately after the installation. You'll get 100 free recordings/month and can upgrade your account for more.

By installing the extension, you agree with our Privacy Policy (https://vocalbird.io/privacy-policy) and our Terms of Service (https://vocalbird.io/terms-of-service).

Any question? We'll be glad to help and receive your feedbacks. Drop us a line at [email protected]!                    

확장 프로그램 기본 정보

이름 VocalBird: Record and share audio messages VocalBird: Record and share audio messages
ID iifpijpbighbakbebbcnjgnnonifmmim
공식 URL https://chromewebstore.google.com/detail/vocalbird-record-and-shar/iifpijpbighbakbebbcnjgnnonifmmim
설명 Record and share audio messages from any page.
파일 크기 253 KB
설치 횟수 510
현재 버전 1.3.0
최근 업데이트 2020-05-17
출시 날짜 2020-05-17
평점 4.20/5 총 5 개의 평점
개발자 https://vocalbird.io
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://vocalbird.io/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VocalBird: Record and share audio messages",
    "short_name": "VocalBird",
    "version": "1.3.0",
    "homepage_url": "https:\/\/vocalbird.io",
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "manifest_version": 2,
    "description": "Record and share audio messages from any page.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Record and share an audio message"
    },
    "permissions": [
        "clipboardWrite",
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "popup.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/vocalbird.io\/*"
            ],
            "js": [
                "content_scripts\/cs_vocalbird.js"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/vocalbird.io\/*"
        ]
    }
}