FurAffinity Message Notifier

A notifier for FurAffinity messages.

Apa itu FurAffinity Message Notifier?

FurAffinity Message Notifier adalah ekstensi Chrome yang dikembangkan oleh CodeFox, dan fitur utamanya adalah "A notifier for FurAffinity messages.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi FurAffinity Message Notifier

Unduh file ekstensi FurAffinity Message Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This extension shows how many notifications you have on FurAffinity and also provides a quick way to access them.
It also allows you to choose notification types to ignore.


CodeFox is not affiliated with FurAffinity.
FA Message Notifier uses https://sentry.io for error reporting.                    

Informasi Dasar Ekstensi

Nama FurAffinity Message Notifier FurAffinity Message Notifier
ID migkkjmambiagaomakolkoidihmkhnlj
URL Resmi https://chromewebstore.google.com/detail/furaffinity-message-notif/migkkjmambiagaomakolkoidihmkhnlj
Deskripsi A notifier for FurAffinity messages.
Ukuran File 180 KB
Jumlah Instalasi 426
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2024-01-24
Tanggal Publikasi 2020-05-30
Penilaian 5.00/5 Total 7 Penilaian
Pengembang CodeFox
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://sites.google.com/view/codefox/furaffinity-notifier-privacy
Bahasa yang Didukung en
manifest.json
{
    "manifest_version": 3,
    "name": "FurAffinity Message Notifier",
    "version": "1.0.4",
    "minimum_chrome_version": "116",
    "description": "A notifier for FurAffinity messages.",
    "short_name": "FA Notifier",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "js\/service_worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": "img\/fa_gray_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img\/fa_128.png",
        "19": "img\/fa_19.png",
        "48": "img\/fa_48.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "open_in_tab": false,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "offscreen"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/www.furaffinity.net\/",
        "https:\/\/www.furaffinity.net\/"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/injector.js"
            ],
            "matches": [
                "http:\/\/www.furaffinity.net\/msg\/*",
                "https:\/\/www.furaffinity.net\/msg\/*"
            ],
            "run_at": "document_end"
        }
    ]
}