FA Notes Notifier

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

Cos'è FA Notes Notifier?

FA Notes Notifier è un'estensione di Chrome sviluppata da NerdyRedPanda, e la sua funzione principale è "Sends you a notification whenever you get a new note on FA.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione FA Notes Notifier

Scarica i file di estensione FA Notes Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FA Notes Notifier FA Notes Notifier
ID jnopajjjgbhbdlbnoefacpmhcmehkigf
URL Ufficiale https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf
Descrizione Sends you a notification whenever you get a new note on FA.
Dimensione del File 18.95 KB
Conteggio Installazioni 40
Versione Corrente 1.2
Ultimo Aggiornamento 2020-02-02
Data di Pubblicazione 2020-02-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore NerdyRedPanda
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}