Simple Extension

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

Simple Extensionคืออะไร?

Simple Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gzlock และคุณลักษณะหลักของมันคือ "Let each website can save/switch cookies, switch User-Agent"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Extension

ดาวน์โหลดไฟล์ส่วนขยาย Simple Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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