FurAffinity Extender
FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.
什麼是FurAffinity Extender?
FurAffinity Extender是由Kauko開發的Chrome擴展程式,該擴展的主要功能是“FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.”。
擴展截圖
下載FurAffinity Extender擴展crx文件
下載FurAffinity Extender擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding features such as saving files, Open Gallery in Tabs to open all images in a gallery at once, keyboard shortcuts, and more.
擴展基本資訊
名稱 | FurAffinity Extender |
ID | fhmcgphbcegegmikbgihhobgphecbkon |
官方網址 | https://chromewebstore.google.com/detail/furaffinity-extender/fhmcgphbcegegmikbgihhobgphecbkon |
簡介 | FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features. |
檔案大小 | 75.65 KB |
安裝次數 | 1,494 |
目前版本 | 1.2.4 |
更新時間 | 2023-12-06 |
上架時間 | 2020-06-12 |
評分 | 3.14/5 共 21 次評分 |
開發者 | Kauko |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://cheeplusplus.github.io/faextender-chrome/ |
說明頁面URL | https://github.com/cheeplusplus/faextender-chrome/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FurAffinity Extender", "manifest_version": 3, "description": "FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.furaffinity.net\/*" ], "js": [ "page_inject.bundle.js", "vendor.bundle.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "tabdelay.html" ], "matches": [ "*:\/\/*.furaffinity.net\/*" ] } ], "homepage_url": "https:\/\/cheeplusplus.github.io\/faextender-chrome\/", "options_ui": { "page": "options.html" }, "permissions": [ "storage", "downloads" ], "version": "1.2.4", "minimum_chrome_version": "88", "background": { "service_worker": "background.bundle.js", "type": "module" } } |