Cloud Inject
Inject JS/CSS from any url, into any page
Wat is Cloud Inject?
Cloud Inject is een Chrome-extensie ontwikkeld door Aloong Deng, en de belangrijkste functie is "Inject JS/CSS from any url, into any page".
Extensie Screenshots
Download het CRX-bestand van de extensie Cloud Inject
Download Cloud Inject-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.
Basisinformatie over de Extensie
Naam | |
ID | hoenhdmdbiehplejoheeklmflmcnidjp |
Officiële URL | https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp |
Beschrijving | Inject JS/CSS from any url, into any page |
Bestandsgrootte | 51.03 KB |
Aantal Installaties | 54 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2017-06-06 |
Publicatiedatum | 2017-06-06 |
Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Aloong Deng |
Betalingswijze | free |
Ondersteunde Talen | 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" } |