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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}