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.”。

扩展截图

screenshot

下载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 FurAffinity Extender
ID fhmcgphbcegegmikbgihhobgphecbkon
官方URL 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"
    }
}