JavaScript Injector
Inject javascript in a given website.
JavaScript Injector क्या है?
JavaScript Injector luisnaia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject javascript in a given website."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में JavaScript Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This chrome extension has the purpose of injecting Java Script into a target URL every time that page loads. You can inject your favourite script to extend the page functionality. Features - Add urls with or without regular expressions - Keep a list of your urls and edit your js code inline - You can turn on/off the js code when you wish - Search trough your URLs
एक्सटेंशन की मूल जानकारी
नाम | JavaScript Injector |
ID | knmnopfmccchnnfdoiddbihbcboeedll |
आधिकारिक URL | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
विवरण | Inject javascript in a given website. |
फ़ाइल का आकार | 397 KB |
स्थापना संख्या | 5,062 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2014-08-21 |
प्रकाशन तिथि | 2014-08-21 |
रेटिंग | 2.91/5 कुल 33 रेटिंग्स |
डेवलपर | luisnaia |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/darkbls/jsinjector |
सहायता पृष्ठ URL | https://github.com/darkbls/jsinjector |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JavaScript Injector", "short_name": "Js Injector", "description": "Inject javascript in a given website. ", "version": "1.0.4", "browser_action": { "default_icon": "icon72.png", "default_title": "Activate Js Inject rules - Click to add a new rule" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "activeTab", "storage", "webNavigation" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |