Codopen
Easy-peasy debugging of all your codepen codepens!
What is Codopen?
Codopen is a Chrome extension developed by Dizzy, and its main feature is "Easy-peasy debugging of all your codepen codepens!".
Extension Screenshots
Download Codopen Extension CRX File
Download Codopen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds a button and shortcut (Ctrl-Shift-i) to switch between Pen and Debug view tabs for a Codepen.
Extension Basic Information
Name | Codopen |
ID | agnkphdgffianchpipdbkeaclfbobaak |
Official URL | https://chromewebstore.google.com/detail/codopen/agnkphdgffianchpipdbkeaclfbobaak |
Description | Easy-peasy debugging of all your codepen codepens! |
File Size | 18.88 KB |
Installation Count | 2,247 |
Current Version | 1.0.3 |
Last Updated | 2019-10-19 |
Publish Date | 2019-10-19 |
Rating | 4.78/5 Total 9 Ratings |
Developer | Dizzy |
Payment Type | free |
Extension Website | http://github.com/dizzyd/codopen |
Supported Languages | 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'" } |