Cloud Inject
Inject JS/CSS from any url, into any page
Cloud Inject क्या है?
Cloud Inject Aloong Deng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inject JS/CSS from any url, into any page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cloud Inject एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hoenhdmdbiehplejoheeklmflmcnidjp |
आधिकारिक URL | https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp |
विवरण | Inject JS/CSS from any url, into any page |
फ़ाइल का आकार | 51.03 KB |
स्थापना संख्या | 54 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2017-06-06 |
प्रकाशन तिथि | 2017-06-06 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | Aloong Deng |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cloud Inject", "version": "1.5", "manifest_version": 2, "description": "Inject JS\/CSS from any url, into any page", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "myscript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "jquery.js", "inject_script.js", "inject_css.css" ], "page_action": { "default_icon": "icon.png", "default_title": "Cloud Inject", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/cloud-inject\/hoenhdmdbiehplejoheeklmflmcnidjp" } |