Javascript Toggle
A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Vad är Javascript Toggle?
Javascript Toggle är en Chrome-tillägg utvecklad av Kai Yuan, och dess huvudfunktion är "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.".
Tilläggsskärmbilder
Ladda ner Javascript Toggle-förlängningens CRX-fil
Ladda ner Javascript Toggle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Javascript Toggle |
ID | mdjbjncpgebfmegaljihajkedlaajeja |
Officiell webbadress | https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja |
Beskrivning | A really simple, clean and lightweight extension for toggling the Javascript setting on any page. |
Filstorlek | 39.36 KB |
Antal Installationer | 232 |
Aktuell Version | 1.5 |
Senast Uppdaterad | 2019-05-04 |
Publiceringsdatum | 2019-05-04 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Kai Yuan |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/thngkaiyuan/js-toggle/tree/master |
Hjälpsida URL | https://github.com/thngkaiyuan/js-toggle/tree/master |
Stödda Språk | 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 } |