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…
Wat is R42 Module Loader?
R42 Module Loader is een Chrome-extensie ontwikkeld door icodeforlove, en de belangrijkste functie is "Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…".
Extensie Screenshots
Download het CRX-bestand van de extensie R42 Module Loader
Download R42 Module Loader-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
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.
Basisinformatie over de Extensie
Naam | R42 Module Loader |
ID | ojjecmicelipcjlfeehmpmcmljaolbie |
Officiële URL | https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie |
Beschrijving | Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to… |
Bestandsgrootte | 548 KB |
Aantal Installaties | 16 |
Huidige Versie | 1.4.3 |
Laatst Bijgewerkt | 2016-12-19 |
Publicatiedatum | 2016-12-19 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | icodeforlove |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |