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…

什麼是R42 Module Loader?

R42 Module Loader是由icodeforlove開發的Chrome擴展程式,該擴展的主要功能是“Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…”。

擴展截圖

screenshot

下載R42 Module Loader擴展crx文件

下載R42 Module Loader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 R42 Module Loader R42 Module Loader
ID ojjecmicelipcjlfeehmpmcmljaolbie
官方網址 https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie
簡介 Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…
檔案大小 548 KB
安裝次數 16
目前版本 1.4.3
更新時間 2016-12-19
上架時間 2016-12-19
評分 5.00/5 共 1 次評分
開發者 icodeforlove
付費類型 free
支援的語言 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'"
}