clickForCode
Click to add a
tag inside the HTML .
Vad är clickForCode?
clickForCode är en Chrome-tillägg utvecklad av ryanpcmcquen, och dess huvudfunktion är "Click to add a
tag inside the HTML .".
Tilläggsskärmbilder
Ladda ner clickForCode-förlängningens CRX-fil
Ladda ner clickForCode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | clickForCode |
ID | ihfahclbppdojebkcgggncbkobblacbm |
Officiell webbadress | https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm |
Beskrivning | Click to add a tag inside the HTML . |
Filstorlek | 19.82 KB |
Antal Installationer | 87 |
Aktuell Version | 0.2.0 |
Senast Uppdaterad | 2018-12-26 |
Publiceringsdatum | 2018-12-20 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | ryanpcmcquen |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ryanpcmcquen/clickForCode |
Hjälpsida URL | https://github.com/ryanpcmcquen/clickForCode |
Stödda Språk | 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" ] } ] } |