Inject JS
This extension will inject javascript from a URL into the current webpage
Inject JS क्या है?
Inject JS dailenspencer12 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will inject javascript from a URL into the current webpage"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Inject JS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ppbefedgpemhmbmiehiodeobnoekdhfo |
आधिकारिक URL | https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo |
विवरण | This extension will inject javascript from a URL into the current webpage |
फ़ाइल का आकार | 40.14 KB |
स्थापना संख्या | 80 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2016-09-29 |
प्रकाशन तिथि | 2016-09-29 |
डेवलपर | dailenspencer12 |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inject JS", "description": "This extension will inject javascript from a URL into the current webpage", "version": "1.1", "browser_action": { "default_icon": "rocket.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery.min.js", "popup.js" ] } ], "icons": { "128": "rocket128.png" }, "permissions": [ "activeTab" ] } |