clickForCode

Click to add a

 tag inside the HTML .

Apa itu clickForCode?

clickForCode adalah ekstensi Chrome yang dikembangkan oleh ryanpcmcquen, dan fitur utamanya adalah "Click to add a

 tag inside the HTML .".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi clickForCode

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

 Open source, of course: https://github.com/ryanpcmcquen/clickForCode Useful for when you have a PHP `var_dump();` and forgot to add a `
` tag.

It also automatically detects text only pages, and will automatically format them.                    

Informasi Dasar Ekstensi

Nama clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
URL Resmi https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
Deskripsi Click to add a
 tag inside the HTML .
Ukuran File 19.82 KB
Jumlah Instalasi 87
Versi Saat Ini 0.2.0
Terakhir Diperbarui 2018-12-26
Tanggal Publikasi 2018-12-20
Penilaian 5.00/5 Total 1 Penilaian
Pengembang ryanpcmcquen
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ryanpcmcquen/clickForCode
URL Halaman Bantuan https://github.com/ryanpcmcquen/clickForCode
Bahasa yang Didukung en-US
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "clickForCode", "description": "Click to add a 
 tag inside the HTML .",
    "version": "0.2.0",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "512": "clickForCode.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "clickForCode.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "clickForCodeContent.js"
            ]
        }
    ]
}