clickForCode

Click to add a

 tag inside the HTML .

Wat is clickForCode?

clickForCode is een Chrome-extensie ontwikkeld door ryanpcmcquen, en de belangrijkste functie is "Click to add a

 tag inside the HTML .".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie clickForCode

Download clickForCode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

 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.                    

Basisinformatie over de Extensie

Naam clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
Officiële URL https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
Beschrijving Click to add a
 tag inside the HTML .
Bestandsgrootte 19.82 KB
Aantal Installaties 87
Huidige Versie 0.2.0
Laatst Bijgewerkt 2018-12-26
Publicatiedatum 2018-12-20
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ryanpcmcquen
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ryanpcmcquen/clickForCode
Help Pagina-URL https://github.com/ryanpcmcquen/clickForCode
Ondersteunde Talen 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"
            ]
        }
    ]
}