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…

What is R42 Module Loader?

R42 Module Loader is a Chrome extension developed by icodeforlove, and its main feature is "Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…".

Extension Screenshots

screenshot

Download R42 Module Loader Extension CRX File

Download R42 Module Loader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name R42 Module Loader R42 Module Loader
ID ojjecmicelipcjlfeehmpmcmljaolbie
Official URL https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie
Description Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…
File Size 548 KB
Installation Count 16
Current Version 1.4.3
Last Updated 2016-12-19
Publish Date 2016-12-19
Rating 5.00/5 Total 1 Ratings
Developer icodeforlove
Payment Type free
Supported Languages 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'"
}