Change FB Messenger Notification Voice
Change facebook messenger notification voice by <3.
ما هو Change FB Messenger Notification Voice؟
Change FB Messenger Notification Voice هو إضافة Chrome تم تطويرها بواسطة Nat Lee، والميزة الرئيسية لها هي "Change facebook messenger notification voice by <3.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Change FB Messenger Notification Voice
قم بتنزيل ملفات الامتداد Change FB Messenger Notification Voice بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/NatLee/FacebookMsgPoi |
| عنوان صفحة المساعدة | 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"
}
]
} | |