Code Injector

Inject your code (html, css, js) into page.

Apa itu Code Injector?

Code Injector adalah ekstensi Chrome yang dikembangkan oleh dmitry.pechkovsky, dan fitur utamanya adalah "Inject your code (html, css, js) into page.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Code Injector

Unduh file ekstensi Code Injector 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

                        Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!

What' new in 1.13:
- Libraries!

What' new in 1.14:
- Bugfixes.                    

Informasi Dasar Ekstensi

Nama Code Injector Code Injector
ID fehfokkkkeamcfiaogfdkkpoblipkmbd
URL Resmi https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd
Deskripsi Inject your code (html, css, js) into page.
Ukuran File 399 KB
Jumlah Instalasi 1,000
Versi Saat Ini 1.14
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 3.42/5 Total 19 Penilaian
Pengembang dmitry.pechkovsky
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Injector",
    "description": "Inject your code (html, css, js) into page.",
    "manifest_version": 2,
    "version": "1.14",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Code Injector",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "functions.js",
                "config.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}