FA Notes Notifier

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

O que é FA Notes Notifier?

FA Notes Notifier é uma extensão do Chrome desenvolvida por NerdyRedPanda, e sua principal característica é "Sends you a notification whenever you get a new note on FA.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão FA Notes Notifier

Baixe arquivos de extensão FA Notes Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome FA Notes Notifier FA Notes Notifier
ID jnopajjjgbhbdlbnoefacpmhcmehkigf
URL Oficial https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf
Descrição Sends you a notification whenever you get a new note on FA.
Tamanho do Arquivo 18.95 KB
Contagem de Instalações 40
Versão Atual 1.2
Última Atualização 2020-02-02
Data de Publicação 2020-02-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor NerdyRedPanda
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}