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
官方URL 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"
            ]
        }
    ]
}