FA Notes Notifier
Sends you a notification whenever you get a new note on FA.
FA Notes Notifier क्या है?
FA Notes Notifier NerdyRedPanda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sends you a notification whenever you get a new note on FA."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में FA Notes Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } } |