Cloud Inject
Inject JS/CSS from any url, into any page
Qu'est-ce que Cloud Inject ?
Cloud Inject est une extension Chrome développée par Aloong Deng, et sa fonction principale est "Inject JS/CSS from any url, into any page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Cloud Inject
Téléchargez les fichiers d'extension Cloud Inject au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.
Informations de Base sur l'Extension
Nom | |
ID | hoenhdmdbiehplejoheeklmflmcnidjp |
URL Officiel | https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp |
Description | Inject JS/CSS from any url, into any page |
Taille du Fichier | 51.03 KB |
Nombre d'Installations | 54 |
Version Actuelle | 1.5 |
Dernière Mise à Jour | 2017-06-06 |
Date de Publication | 2017-06-06 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | Aloong Deng |
Type de Paiement | free |
Langues Prises en Charge | 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" } |