R42 Module Loader
Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…
Was ist R42 Module Loader?
R42 Module Loader ist eine Chrome-Erweiterung, die von icodeforlove entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…".
Erweiterungsscreenshots
R42 Module Loader-Erweiterungs-CRX-Datei herunterladen
Laden Sie R42 Module Loader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to console usage. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ojjecmicelipcjlfeehmpmcmljaolbie |
| Offizielle URL | https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie |
| Beschreibung | Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to… |
| Dateigröße | 548 KB |
| Installationsanzahl | 16 |
| Aktuelle Version | 1.4.3 |
| Letztes Update | 2016-12-19 |
| Veröffentlichungsdatum | 2016-12-19 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | icodeforlove |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "R42 Module Loader",
"manifest_version": 2,
"version": "1.4.3",
"minimum_chrome_version": "49.0.2623.110",
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"communication.js",
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"app\/*"
],
"icons": {
"32": "icon.png",
"128": "icon128.png"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |