JS Inject
Create, save, and inject javascript code into web pages.
JS Inject क्या है?
JS Inject https://bitwisecreative.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create, save, and inject javascript code into web pages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में JS Inject एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.
एक्सटेंशन की मूल जानकारी
नाम | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
आधिकारिक URL | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
विवरण | Create, save, and inject javascript code into web pages. |
फ़ाइल का आकार | 551 KB |
स्थापना संख्या | 559 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2019-11-01 |
प्रकाशन तिथि | 2019-11-01 |
डेवलपर | https://bitwisecreative.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JS Inject", "version": "1.0.0", "description": "Create, save, and inject javascript code into web pages.", "permissions": [ "activeTab", "storage", "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_title": "JS Inject", "default_icon": { "16": "images\/js-inject16.png", "32": "images\/js-inject32.png", "48": "images\/js-inject48.png", "128": "images\/js-inject128.png" } }, "icons": { "16": "images\/js-inject16.png", "32": "images\/js-inject32.png", "48": "images\/js-inject48.png", "128": "images\/js-inject128.png" }, "manifest_version": 2 } |