clickForCode

Click to add a

 tag inside the HTML .

What is clickForCode?

clickForCode is a Chrome extension developed by ryanpcmcquen, and its main feature is "Click to add a

 tag inside the HTML .".

Extension Screenshots

screenshot

Download clickForCode Extension CRX File

Download clickForCode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

 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.                    

Extension Basic Information

Name clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
Official URL https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
Description Click to add a
 tag inside the HTML .
File Size 19.82 KB
Installation Count 87
Current Version 0.2.0
Last Updated 2018-12-26
Publish Date 2018-12-20
Rating 5.00/5 Total 1 Ratings
Developer ryanpcmcquen
Email [email protected]
Payment Type free
Extension Website https://github.com/ryanpcmcquen/clickForCode
Help Page URL https://github.com/ryanpcmcquen/clickForCode
Supported Languages 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"
            ]
        }
    ]
}