Quick Javascript Switcher

Quick way to enable/disable Javascript

Quick Javascript Switcherคืออะไร?

Quick Javascript Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.maximelebreton.com และคุณลักษณะหลักของมันคือ "Quick way to enable/disable Javascript"

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

screenshot

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

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

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

                        Support the next release on Kickstarter! (until January 24, 2019)
https://www.kickstarter.com/projects/376707762/337761327

Quick Javascript Switcher is a Chrome extension that enable / disable JavaScript on the fly by hostname, and subdomain.
(unlike to Chris Pederick's "Web Developer" extension who globally disables javascript)

For example, disable javascript on www.google.fr not disable js on translate.google.fr

Shortcut
Windows [Alt+Shift+Q]
Mac [Command+Shift+Q]
The default shortcut can be customized in chrome://extensions/shortcuts


Works with Chrome 16+

[FR] Quick Javascript Switcher est une extension permettant d'activer / désactiver JavaScript à la volée et par nom de domaine, et sous domaine.
(A la différence de l'extension de Chris Pederick "Web Developer", qui désactive globalement JavaScript)

Par exemple, désactiver javascript sur www.google.fr ne désactivera pas le js sur translate.google.fr

Raccourci clavier
Windows [Alt+Shift+Q]
Mac [Command+Shift+Q]
Le raccourci par défaut peut être modifié dans chrome://extensions/shortcuts


Fonctionne à partir de Chrome 16+

__________________________________

/* Log info */
1.4.12
=====
Fix bug with chrome 91+: https://github.com/maximelebreton/quick-javascript-switcher/issues/45

1.4.4
=====
Small fixes and promotion for the next release! (Kickstarter crowdfunding)

1.4.1
====
Implement a hack to fix this chrome issue in incognito mode:
https://code.google.com/p/chromium/issues/detail?id=494501

1.4.0
====
Add synchronized options
fix some bugs

1.3.2
====
Custom Shortcut added (you need to edit manualy in tools > extensions > keyboard shortcuts (in the bottom right))

1.3.0
====
- Donation added (in Options)

1.2.0
====
- Many Fixes
- Way to import / export rules
- Fix incognito mode

1.1.0
====
Auto-refresh added & options page improved
(auto-refresh can be disabled trough the options page)

1.0.8
====
Fix background_page error in manifest v2

1.0.7
====
Update to manifest version 2

1.0.6
====
Icon modification for accessibility of red/green color deficients                    

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

ชื่อ Quick Javascript Switcher Quick Javascript Switcher
ID geddoclleiomckbhadiaipdggiiccfje
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-javascript-switcher/geddoclleiomckbhadiaipdggiiccfje
คำอธิบาย Quick way to enable/disable Javascript
ขนาดไฟล์ 25.77 KB
จำนวนการติดตั้ง 294,617
เวอร์ชันปัจจุบัน 1.4.12
อัปเดตครั้งล่าสุด 2021-06-19
วันที่เผยแพร่ 2019-01-23
คะแนน 4.35/5 รวมทั้งหมด 785 คะแนน
ผู้พัฒนา https://www.maximelebreton.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/maximelebreton/quick-javascript-switcher
URL หน้าช่วยเหลือ https://github.com/maximelebreton/quick-javascript-switcher/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Javascript Switcher",
    "version": "1.4.12",
    "minimum_chrome_version": "16.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/maximelebreton\/quick-javascript-switcher",
    "description": "Quick way to enable\/disable Javascript",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "contentSettings",
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png"
    },
    "incognito": "spanning",
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "commands": {
        "toggle-qjs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Command+Shift+Q"
            },
            "description": "Toggle JavaScript"
        }
    }
}