FurAffinity Message Notifier
A notifier for FurAffinity messages.
FurAffinity Message Notifierとは何ですか?
FurAffinity Message NotifierはCodeFoxによって開発されたChromeの拡張機能で、その主な機能は「A notifier for FurAffinity messages.」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| ID | migkkjmambiagaomakolkoidihmkhnlj |
| 公式URL | 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 |
| Eメール | [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"
}
]
} | |