FurAffinity Message Notifier

A notifier for FurAffinity messages.

什麼是FurAffinity Message Notifier?

FurAffinity Message Notifier是由CodeFox開發的Chrome擴展程式,該擴展的主要功能是“A notifier for FurAffinity messages.”。

擴展截圖

screenshot
screenshot

下載FurAffinity Message Notifier擴展crx文件

下載FurAffinity Message Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 FurAffinity Message Notifier FurAffinity Message Notifier
ID migkkjmambiagaomakolkoidihmkhnlj
官方網址 https://chromewebstore.google.com/detail/furaffinity-message-notif/migkkjmambiagaomakolkoidihmkhnlj
簡介 A notifier for FurAffinity messages.
檔案大小 180 KB
安裝次數 426
目前版本 1.0.4
更新時間 2024-01-24
上架時間 2020-05-30
評分 5.00/5 共 7 次評分
開發者 CodeFox
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://sites.google.com/view/codefox/furaffinity-notifier-privacy
支援的語言 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"
        }
    ]
}