Code Injector
Inject your code (html, css, js) into page.
Cos'è Code Injector?
Code Injector è un'estensione di Chrome sviluppata da dmitry.pechkovsky, e la sua funzione principale è "Inject your code (html, css, js) into page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Code Injector
Scarica i file di estensione Code Injector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!
What' new in 1.13:
- Libraries!
What' new in 1.14:
- Bugfixes. Informazioni di Base sull'Estensione
| Nome | |
| ID | fehfokkkkeamcfiaogfdkkpoblipkmbd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd |
| Descrizione | Inject your code (html, css, js) into page. |
| Dimensione del File | 399 KB |
| Conteggio Installazioni | 1,000 |
| Versione Corrente | 1.14 |
| Ultimo Aggiornamento | 2019-03-08 |
| Data di Pubblicazione | 2019-03-08 |
| Valutazione | 3.42/5 Totale 19 Valutazioni |
| Sviluppatore | dmitry.pechkovsky |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Code Injector",
"description": "Inject your code (html, css, js) into page.",
"manifest_version": 2,
"version": "1.14",
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"permissions": [
"downloads",
"storage",
"unlimitedStorage",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "Code Injector",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"functions.js",
"config.js",
"background.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |