Simple Extension

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

Simple Extension क्या है?

Simple Extension gzlock द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let each website can save/switch cookies, switch User-Agent"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simple Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Simple Extension Simple Extension
ID ofhbnimjijmnaigdfhhmhegnlmcbilba
आधिकारिक URL https://chromewebstore.google.com/detail/simple-extension/ofhbnimjijmnaigdfhhmhegnlmcbilba
विवरण Let each website can save/switch cookies, switch User-Agent
फ़ाइल का आकार 142 KB
स्थापना संख्या 966
वर्तमान संस्करण 0.9.5
अंतिम अपडेट 2023-01-17
प्रकाशन तिथि 2020-03-01
रेटिंग 4.55/5 कुल 11 रेटिंग्स
डेवलपर gzlock
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/gzlock/simple-extension
सहायता पृष्ठ URL https://gzlock.github.io/simple-extension
गोपनीयता नीति पृष्ठ URL https://gzlock.github.io/simple-extension
समर्थित भाषाएँ 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"
            ]
        }
    ]
}