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…

Apa itu R42 Module Loader?

R42 Module Loader adalah ekstensi Chrome yang dikembangkan oleh icodeforlove, dan fitur utamanya adalah "Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi R42 Module Loader

Unduh file ekstensi R42 Module Loader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama R42 Module Loader R42 Module Loader
ID ojjecmicelipcjlfeehmpmcmljaolbie
URL Resmi https://chromewebstore.google.com/detail/r42-module-loader/ojjecmicelipcjlfeehmpmcmljaolbie
Deskripsi Allows you to load bower/npm compatible modules into your browser persistently on a page-by-page basis, and opens them up to…
Ukuran File 548 KB
Jumlah Instalasi 16
Versi Saat Ini 1.4.3
Terakhir Diperbarui 2016-12-19
Tanggal Publikasi 2016-12-19
Penilaian 5.00/5 Total 1 Penilaian
Pengembang icodeforlove
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}