clickForCode

Click to add a

 tag inside the HTML .

Qu'est-ce que clickForCode ?

clickForCode est une extension Chrome développée par ryanpcmcquen, et sa fonction principale est "Click to add a

 tag inside the HTML .".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension clickForCode

Téléchargez les fichiers d'extension clickForCode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

 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.                    

Informations de Base sur l'Extension

Nom clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
URL Officiel https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
Description Click to add a
 tag inside the HTML .
Taille du Fichier 19.82 KB
Nombre d'Installations 87
Version Actuelle 0.2.0
Dernière Mise à Jour 2018-12-26
Date de Publication 2018-12-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur ryanpcmcquen
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ryanpcmcquen/clickForCode
URL de la Page d'Aide https://github.com/ryanpcmcquen/clickForCode
Langues Prises en Charge 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"
            ]
        }
    ]
}