FurAffinity Extender

FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.

Co to jest FurAffinity Extender?

FurAffinity Extender to rozszerzenie Chrome opracowane przez Kauko, a jego główną funkcją jest „FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FurAffinity Extender

Pobierz pliki rozszerzeń FurAffinity Extender w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa FurAffinity Extender FurAffinity Extender
ID fhmcgphbcegegmikbgihhobgphecbkon
Oficjalny URL https://chromewebstore.google.com/detail/furaffinity-extender/fhmcgphbcegegmikbgihhobgphecbkon
Opis FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.
Rozmiar pliku 75.65 KB
Liczba instalacji 1,494
Aktualna Wersja 1.2.4
Ostatnia Aktualizacja 2023-12-06
Data Publikacji 2020-06-12
Ocena 3.14/5 Łącznie 21 Oceny
Deweloper Kauko
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://cheeplusplus.github.io/faextender-chrome/
Adres URL Strony Pomocy https://github.com/cheeplusplus/faextender-chrome/issues
Obsługiwane Języki 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"
    }
}