Change FB Messenger Notification Voice
Change facebook messenger notification voice by <3.
Change FB Messenger Notification Voiceとは何ですか?
Change FB Messenger Notification VoiceはNat Leeによって開発されたChromeの拡張機能で、その主な機能は「Change facebook messenger notification voice by <3.」です。
拡張機能のスクリーンショット
Change FB Messenger Notification Voice拡張機能のCRXファイルをダウンロード
Change FB Messenger Notification Voice拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Poi!
Github site: https://github.com/NatLee/FacebookMsgPoi 拡張機能の基本情報
| 名前 | |
| ID | gfgpnlogdlabglhbldbdadhpaplacjbo |
| 公式URL | https://chromewebstore.google.com/detail/change-fb-messenger-notif/gfgpnlogdlabglhbldbdadhpaplacjbo |
| 説明 | Change facebook messenger notification voice by <3. |
| ファイルサイズ | 7.5 KB |
| インストール数 | 12 |
| 現在のバージョン | 0.0.1 |
| 最終更新日 | 2019-01-27 |
| 公開日 | 2019-01-27 |
| 開発者 | Nat Lee |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/NatLee/FacebookMsgPoi |
| ヘルプページのURL | https://github.com/NatLee/FacebookMsgPoi/issues |
| 対応言語 | zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Change FB Messenger Notification Voice",
"description": "Change facebook messenger notification voice by <3.",
"version": "0.0.1",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Change FB Messenger Notification Voice",
"default_icon": "icon.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.facebook.com\/*"
],
"js": [
"voice.js"
],
"run_at": "document_end"
}
]
} | |