clickForCode
Click to add a
tag inside the HTML .
Cos'è clickForCode?
clickForCode è un'estensione di Chrome sviluppata da ryanpcmcquen, e la sua funzione principale è "Click to add a
tag inside the HTML .".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione clickForCode
Scarica i file di estensione clickForCode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | clickForCode |
ID | ihfahclbppdojebkcgggncbkobblacbm |
URL Ufficiale | https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm |
Descrizione | Click to add a tag inside the HTML . |
Dimensione del File | 19.82 KB |
Conteggio Installazioni | 87 |
Versione Corrente | 0.2.0 |
Ultimo Aggiornamento | 2018-12-26 |
Data di Pubblicazione | 2018-12-20 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | ryanpcmcquen |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ryanpcmcquen/clickForCode |
URL della Pagina di Aiuto | https://github.com/ryanpcmcquen/clickForCode |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "clickForCode", "description": "Click to add atag 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" ] } ] } |