clickForCode

Click to add a

 tag inside the HTML .

Hvad er clickForCode?

clickForCode er en Chrome-udvidelse udviklet af ryanpcmcquen, og dens hovedfunktion er "Click to add a

 tag inside the HTML .".

Udvidelsesskærmbilleder

screenshot

Download clickForCode-udvidelses-CRX-fil

Download clickForCode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

 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.                    

Grundlæggende oplysninger om udvidelsen

Navn clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
Officiel URL https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
Beskrivelse Click to add a
 tag inside the HTML .
Filstørrelse 19.82 KB
Antal Installationer 87
Nuværende Version 0.2.0
Senest Opdateret 2018-12-26
Udgivelsesdato 2018-12-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler ryanpcmcquen
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/ryanpcmcquen/clickForCode
Hjælpeside-URL https://github.com/ryanpcmcquen/clickForCode
Understøttede Sprog 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"
            ]
        }
    ]
}