Codopen
Easy-peasy debugging of all your codepen codepens!
Cos'è Codopen?
Codopen è un'estensione di Chrome sviluppata da Dizzy, e la sua funzione principale è "Easy-peasy debugging of all your codepen codepens!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codopen
Scarica i file di estensione Codopen 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
Adds a button and shortcut (Ctrl-Shift-i) to switch between Pen and Debug view tabs for a Codepen.
Informazioni di Base sull'Estensione
Nome | Codopen |
ID | agnkphdgffianchpipdbkeaclfbobaak |
URL Ufficiale | https://chromewebstore.google.com/detail/codopen/agnkphdgffianchpipdbkeaclfbobaak |
Descrizione | Easy-peasy debugging of all your codepen codepens! |
Dimensione del File | 18.88 KB |
Conteggio Installazioni | 2,247 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2019-10-19 |
Data di Pubblicazione | 2019-10-19 |
Valutazione | 4.78/5 Totale 9 Valutazioni |
Sviluppatore | Dizzy |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://github.com/dizzyd/codopen |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codopen", "version": "1.0.3", "manifest_version": 2, "description": "Easy-peasy debugging of all your codepen codepens!", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" } }, "commands": { "toggle-codepen-dbg": { "description": "Toggle CodePen Debugging Mode", "suggested_key": { "default": "Ctrl+Shift+I" } } }, "permissions": [ "activeTab", "declarativeContent", "tabs" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |