Simple Extension

Let each website can save/switch cookies, switch User-Agent

Co je Simple Extension?

Simple Extension je rozšíření Chrome vyvinuté gzlock, a jeho hlavní funkcí je „Let each website can save/switch cookies, switch User-Agent“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Simple Extension

Stáhněte si soubory rozšíření Simple Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Switch User-Agent
Custom User-Agent Editor
Save / Switch Cookies                    

Základní Informace o Rozšíření

Název Simple Extension Simple Extension
ID ofhbnimjijmnaigdfhhmhegnlmcbilba
Oficiální URL https://chromewebstore.google.com/detail/simple-extension/ofhbnimjijmnaigdfhhmhegnlmcbilba
Popis Let each website can save/switch cookies, switch User-Agent
Velikost souboru 142 KB
Počet instalací 966
Aktuální Verze 0.9.5
Poslední Aktualizace 2023-01-17
Datum Vydání 2020-03-01
Hodnocení 4.55/5 Celkem 11 Hodnocení
Vývojář gzlock
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/gzlock/simple-extension
URL Stránky Nápovědy https://gzlock.github.io/simple-extension
URL Stránky Zásad Ochrany Soukromí https://gzlock.github.io/simple-extension
Podporované Jazyky en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDesc__",
    "version": "0.9.5",
    "manifest_version": 3,
    "minimum_chrome_version": "100",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "default_locale": "en",
    "incognito": "split",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "background": {
        "type": "module",
        "service_worker": "src\/background\/index.js"
    },
    "options_page": "src\/options\/options.html",
    "action": [],
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "cookies",
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": []
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content\/index.js"
            ]
        }
    ]
}