Scripty - Javascript Injector
Inject your Javascript into the webpage
Scripty - Javascript Injector क्या है?
Scripty - Javascript Injector https://scripty.abhisheksatre.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject your Javascript into the webpage"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Scripty - Javascript Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The Scripty extension allows you to inject custom javascript to a webpage. Features: 1. Inject script based on URL, host or regex. 2. Download script from Script Store. 3. Run the script directly from the context menu. 4. Publish script on Script Store. 5. Share script with other users. 6. Enable/Disable the scripts How To Use: 1. Add your custom script in the Scripty extension. 2. Select the execution mode: Manual/Automatic 3. To run a script: - Open the extension and click the play button. Or - Run a script from the context menu. Right Click > Select Scripty > Select your script. 4. Automatic scripts run automatically based on provided configuration.
एक्सटेंशन की मूल जानकारी
नाम | Scripty - Javascript Injector |
ID | milkbiaeapddfnpenedfgbfdacpbcbam |
आधिकारिक URL | https://chromewebstore.google.com/detail/scripty-javascript-inject/milkbiaeapddfnpenedfgbfdacpbcbam |
विवरण | Inject your Javascript into the webpage |
फ़ाइल का आकार | 22.85 KB |
स्थापना संख्या | 24,334 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2020-01-30 |
प्रकाशन तिथि | 2020-01-30 |
रेटिंग | 4.18/5 कुल 60 रेटिंग्स |
डेवलपर | https://scripty.abhisheksatre.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://scripty.abhisheksatre.com/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Scripty - Javascript Injector", "short_name": "Scripty", "description": "Inject your Javascript into the webpage", "version": "0.0.2", "author": "Abhishek Satre", "browser_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "unlimitedStorage", "webNavigation", "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |