External script loader
Enable to load external script when a page loaded
External script loader क्या है?
External script loader ui3o.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable to load external script when a page loaded"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में External script loader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This add-on enable to load external script to add extra features. It can load script from remote server. Possible to manage feature for users. The content script will be run at document_start state.
एक्सटेंशन की मूल जानकारी
नाम | External script loader |
ID | lednjajedpjbhlhjgdbmcjiddjagachp |
आधिकारिक URL | https://chromewebstore.google.com/detail/external-script-loader/lednjajedpjbhlhjgdbmcjiddjagachp |
विवरण | Enable to load external script when a page loaded |
फ़ाइल का आकार | 19.62 KB |
स्थापना संख्या | 107 |
वर्तमान संस्करण | 2.3.0 |
अंतिम अपडेट | 2022-03-25 |
प्रकाशन तिथि | 2020-03-06 |
डेवलपर | ui3o.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ui3o/external-extension |
सहायता पृष्ठ URL | https://github.com/ui3o/external-extension |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "External script loader", "version": "2.3.0", "manifest_version": 2, "description": "Enable to load external script when a page loaded", "homepage_url": "https:\/\/github.com\/ui3o\/external-extension\/", "icons": { "16": "icons\/icon16x16.png", "48": "icons\/icon48x48.png", "128": "icons\/icon128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/core.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/iframe.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "http:\/\/localhost\/", "storage", "webRequest", "webRequestBlocking", " |