Javascript Toggle
A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Co je Javascript Toggle?
Javascript Toggle je rozšíření Chrome vyvinuté Kai Yuan, a jeho hlavní funkcí je „A really simple, clean and lightweight extension for toggling the Javascript setting on any page.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Javascript Toggle
Stáhněte si soubory rozšíření Javascript Toggle 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í
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.
Základní Informace o Rozšíření
Název | Javascript Toggle |
ID | mdjbjncpgebfmegaljihajkedlaajeja |
Oficiální URL | https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja |
Popis | A really simple, clean and lightweight extension for toggling the Javascript setting on any page. |
Velikost souboru | 39.36 KB |
Počet instalací | 232 |
Aktuální Verze | 1.5 |
Poslední Aktualizace | 2019-05-04 |
Datum Vydání | 2019-05-04 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Kai Yuan |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/thngkaiyuan/js-toggle/tree/master |
URL Stránky Nápovědy | https://github.com/thngkaiyuan/js-toggle/tree/master |
Podporované Jazyky | 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 } |