DesignMode
Tiny helper to enable document.designMode
What is DesignMode?
DesignMode is a Chrome extension developed by stefanjudis, and its main feature is "Tiny helper to enable document.designMode".
Extension Screenshots
Download DesignMode Extension CRX File
Download DesignMode 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
Shortcut to toggle document.designMode. This allows you to edit any website easily. Perfect to hand over to designers to play around with different amounts of text.
Extension Basic Information
Name | DesignMode |
ID | fdmgbnmbkiimohjhijcjkjmdbhfhepai |
Official URL | https://chromewebstore.google.com/detail/designmode/fdmgbnmbkiimohjhijcjkjmdbhfhepai |
Description | Tiny helper to enable document.designMode |
File Size | 2.78 MB |
Installation Count | 524 |
Current Version | 1.1 |
Last Updated | 2016-09-23 |
Publish Date | 2016-09-23 |
Rating | 5.00/5 Total 1 Ratings |
Developer | stefanjudis |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/stefanjudis/designMode-chrome-extension |
Help Page URL | https://github.com/stefanjudis/designMode-chrome-extension/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DesignMode", "description": "Tiny helper to enable document.designMode", "version": "1.1", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon-off.png", "default_title": "Enable design mode!" }, "permissions": [ "activeTab" ] } |