clickForCode

Click to add a

 tag inside the HTML .

什麼是clickForCode?

clickForCode是由ryanpcmcquen開發的Chrome擴展程式,該擴展的主要功能是“Click to add a

 tag inside the HTML .”。

擴展截圖

screenshot

下載clickForCode擴展crx文件

下載clickForCode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

 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.                    

擴展基本資訊

名稱 clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
官方網址 https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
簡介 Click to add a
 tag inside the HTML .
檔案大小 19.82 KB
安裝次數 87
目前版本 0.2.0
更新時間 2018-12-26
上架時間 2018-12-20
評分 5.00/5 共 1 次評分
開發者 ryanpcmcquen
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ryanpcmcquen/clickForCode
說明頁面URL https://github.com/ryanpcmcquen/clickForCode
支援的語言 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"
            ]
        }
    ]
}