Javascript injection
Inject external js files into a page in order to extend or modify functionality
Wat is Javascript injection?
Javascript injection is een Chrome-extensie ontwikkeld door [email protected], en de belangrijkste functie is "Inject external js files into a page in order to extend or modify functionality".
Download het CRX-bestand van de extensie Javascript injection
Download Javascript injection-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
Basisinformatie over de Extensie
| Naam | |
| ID | anblbolcglfjebndjmgnelligobpebpf |
| Officiële URL | https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf |
| Beschrijving | Inject external js files into a page in order to extend or modify functionality |
| Bestandsgrootte | 25.78 KB |
| Aantal Installaties | 77 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2015-08-08 |
| Publicatiedatum | 2015-08-08 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | [email protected] |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Javascript injection",
"version": "1.0",
"description": "Inject external js files into a page in order to extend or modify functionality",
"browser_action": {
"default_title": "Javascript injection",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"manifest_version": 2,
"icons": {
"128": "icon_128.png"
},
"content_scripts": [
{
"js": [
"contentscript.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"*:\/\/*\/*",
"tabs"
],
"content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
} | |