Cloud Inject
Inject JS/CSS from any url, into any page
Co to jest Cloud Inject?
Cloud Inject to rozszerzenie Chrome opracowane przez Aloong Deng, a jego główną funkcją jest „Inject JS/CSS from any url, into any page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cloud Inject
Pobierz pliki rozszerzeń Cloud Inject w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hoenhdmdbiehplejoheeklmflmcnidjp |
Oficjalny URL | https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp |
Opis | Inject JS/CSS from any url, into any page |
Rozmiar pliku | 51.03 KB |
Liczba instalacji | 54 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2017-06-06 |
Data Publikacji | 2017-06-06 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | Aloong Deng |
Typ Płatności | free |
Obsługiwane Języki | 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" } |