Javascript Toggle
A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Javascript Toggle क्या है?
Javascript Toggle Kai Yuan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A really simple, clean and lightweight extension for toggling the Javascript setting on any page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Javascript Toggle एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 } |