Javascript Toggle

A really simple, clean and lightweight extension for toggling the Javascript setting on any page.

Javascript Toggleคืออะไร?

Javascript Toggle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kai Yuan และคุณลักษณะหลักของมันคือ "A really simple, clean and lightweight extension for toggling the Javascript setting on any page."

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

screenshot

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

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

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

                        Just press Ctrl+I on Windows/Linux or Cmd + J on Mac, or click on the extension icon to toggle the Javascript setting for the page in the current tab.

Do you prefer to review and compile the code yourself? No problem, the code is open-sourced at https://github.com/thngkaiyuan/js-toggle/tree/master.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Javascript Toggle Javascript Toggle
ID mdjbjncpgebfmegaljihajkedlaajeja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja
คำอธิบาย A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
ขนาดไฟล์ 39.36 KB
จำนวนการติดตั้ง 232
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2019-05-04
วันที่เผยแพร่ 2019-05-04
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Kai Yuan
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/thngkaiyuan/js-toggle/tree/master
URL หน้าช่วยเหลือ https://github.com/thngkaiyuan/js-toggle/tree/master
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Javascript Toggle",
    "version": "1.5",
    "description": "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.",
    "permissions": [
        "tabs",
        "contentSettings"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-js": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+J"
            },
            "description": "Toggle the Javascript setting on this page."
        }
    },
    "icons": {
        "16": "images\/allow-16.png",
        "32": "images\/allow-32.png",
        "48": "images\/allow-48.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/allow-16.png",
            "32": "images\/allow-32.png",
            "48": "images\/allow-48.png"
        },
        "default_title": "Toggle the Javascript setting on any page with ease."
    },
    "manifest_version": 2
}