Inject JS

This extension will inject javascript from a URL into the current webpage

Apa itu Inject JS?

Inject JS adalah ekstensi Chrome yang dikembangkan oleh dailenspencer12, dan fitur utamanya adalah "This extension will inject javascript from a URL into the current webpage".

Unduh Berkas CRX Ekstensi Inject JS

Unduh file ekstensi Inject JS 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

                                            

Informasi Dasar Ekstensi

Nama Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
URL Resmi https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
Deskripsi This extension will inject javascript from a URL into the current webpage
Ukuran File 40.14 KB
Jumlah Instalasi 80
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-09-29
Tanggal Publikasi 2016-09-29
Pengembang dailenspencer12
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}