FA Notes Notifier

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

¿Qué es FA Notes Notifier?

FA Notes Notifier es una extensión de Chrome desarrollada por NerdyRedPanda, y su función principal es "Sends you a notification whenever you get a new note on FA.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión FA Notes Notifier

Descarga archivos de extensión FA Notes Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre FA Notes Notifier FA Notes Notifier
ID jnopajjjgbhbdlbnoefacpmhcmehkigf
URL Oficial https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf
Descripción Sends you a notification whenever you get a new note on FA.
Tamaño del Archivo 18.95 KB
Cantidad de Instalaciones 40
Versión Actual 1.2
Última Actualización 2020-02-02
Fecha de Publicación 2020-02-02
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador NerdyRedPanda
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}