FA Notes Notifier
Sends you a notification whenever you get a new note on FA.
ما هو FA Notes Notifier؟
FA Notes Notifier هو إضافة Chrome تم تطويرها بواسطة NerdyRedPanda، والميزة الرئيسية لها هي "Sends you a notification whenever you get a new note on FA.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FA Notes Notifier
قم بتنزيل ملفات الامتداد FA Notes Notifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Must be using the most recent FA design. This extension can notify you when you get a new note on FA. No setup needed! It works in the background to notify you :) Source code is located here: https://github.com/NerdyRedPanda/FA-Notes-Notifier Permissions breakdown: Read and Change Data - Gets notes from FA, and profile pictures Display Notifications: To display the note notification.
معلومات أساسية عن التمديد
الاسم | FA Notes Notifier |
ID | jnopajjjgbhbdlbnoefacpmhcmehkigf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf |
الوصف | Sends you a notification whenever you get a new note on FA. |
حجم الملف | 18.95 KB |
عدد التثبيتات | 40 |
النسخة الحالية | 1.2 |
آخر تحديث | 2020-02-02 |
تاريخ النشر | 2020-02-02 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | NerdyRedPanda |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FA Notes Notifier", "description": "Sends you a notification whenever you get a new note on FA.", "version": "1.2", "browser_action": { "default_icon": "icon16.png", "default_popup": "settings.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "*:\/\/*.furaffinity.net\/*", "storage", "notifications", "*:\/\/*.facdn.net\/*", "alarms" ], "background": { "scripts": [ "browser-polyfill-min.js", "getNotes.js" ] } } |