AddJS

This extension allows you to add your own custom website specific JavaScript.

Apa itu AddJS?

AddJS adalah ekstensi Chrome yang dikembangkan oleh http://mkhsoft.eu, dan fitur utamanya adalah "This extension allows you to add your own custom website specific JavaScript.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi AddJS

Unduh file ekstensi AddJS 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

                        AddJS is a light-weight extension for injecting your own JavaScript to a website. You can define domain specific JavaScript snippets that will be injected to all sites in that web domain. 

Furthermore, your snippets are synchronised automatically to all Chrome browsers you are using on different machines.                    

Informasi Dasar Ekstensi

Nama AddJS AddJS
ID ikdcaklgiaookdchoncnfcidafmmlndm
URL Resmi https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm
Deskripsi This extension allows you to add your own custom website specific JavaScript.
Ukuran File 57.22 KB
Jumlah Instalasi 165
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-01-19
Tanggal Publikasi 2017-01-19
Penilaian 5.00/5 Total 1 Penilaian
Pengembang http://mkhsoft.eu
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddJS",
    "description": "This extension allows you to add your own custom website specific JavaScript.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon128.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}