Inject Code
Inject different javascript or css code to every website, when you want
Wat is Inject Code?
Inject Code is een Chrome-extensie ontwikkeld door max, en de belangrijkste functie is "Inject different javascript or css code to every website, when you want".
Extensie Screenshots
Download het CRX-bestand van de extensie Inject Code
Download Inject Code-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
Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded.
Features:
- inject custom js/css to website
- inject CDN links to website
- 38 most popular themes
- auto-inject code to site option ( after loaded page scripts will inject automatically)
- highlight syntax errors and warnings
- hot keys :
* Ctrl+Enter - run code,
* Ctrl+F - find in editor
For inject code to site:
- open browser devtools panel,
- go to "Inject code" tab
- write code ( on typing code autosaving )
- on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code ) Basisinformatie over de Extensie
| Naam | |
| ID | gpaakhhkcmlenabckmapmlfnajboobbi |
| Officiële URL | https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi |
| Beschrijving | Inject different javascript or css code to every website, when you want |
| Bestandsgrootte | 2.96 MB |
| Aantal Installaties | 792 |
| Huidige Versie | 0.91.21 |
| Laatst Bijgewerkt | 2020-08-04 |
| Publicatiedatum | 2020-07-06 |
| Beoordeling | 4.00/5 Totaal 6 Beoordelingen |
| Ontwikkelaar | max |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Inject Code",
"description": "Inject different javascript or css code to every website, when you want",
"version": "0.91.21",
"minimum_chrome_version": "16.0.884",
"permissions": [
"activeTab",
"*:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"128": "128.png"
},
"devtools_page": "devtools.html",
"manifest_version": 2
} | |