FA Notes Notifier

Sends you a notification whenever you get a new note on FA.

Co je FA Notes Notifier?

FA Notes Notifier je rozšíření Chrome vyvinuté NerdyRedPanda, a jeho hlavní funkcí je „Sends you a notification whenever you get a new note on FA.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření FA Notes Notifier

Stáhněte si soubory rozšíření FA Notes Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název FA Notes Notifier FA Notes Notifier
ID jnopajjjgbhbdlbnoefacpmhcmehkigf
Oficiální URL https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf
Popis Sends you a notification whenever you get a new note on FA.
Velikost souboru 18.95 KB
Počet instalací 40
Aktuální Verze 1.2
Poslední Aktualizace 2020-02-02
Datum Vydání 2020-02-02
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář NerdyRedPanda
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}