Design Mode
Allows you to make temporary edits to any page.
Design Mode란 무엇입니까?
Design Mode은(는) Bitquark에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to make temporary edits to any page."입니다.
확장 프로그램 스크린샷
Design Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
New! Design Mode is a tiny extension which puts Chrome into edit mode, allowing you to edit entire pages as though you were in an HTML editor. This extension is great for quickly testing concepts, such as whether a page layout breaks when a heading hits a certain text length, or whether an image or button would look better on the other side of the page. ★ Move images by dragging them around. ★ Edit existing text by clicking and typing. ★ Add new text before or after existing elements. ★ Change font style using standard keys (ctrl+b for bold, etc) This extension is not designed as a hardcore development tool and is limited by Chrome's implementation of design mode. Changes are temporary; reloading the page will clear any changes. Tips: ☛ You can make a single HTML element editable by adding the "contenteditable" attribute. ☛ You can activate design mode by hand by opening up the development console (F12) and typing: document.designMode = 'on'; Of course, that's more work and you don't get the nice icon telling you which tabs are in design mode. You need a cool extension for that, right? ;-)
확장 프로그램 기본 정보
이름 | Design Mode |
ID | kcohlfofdggbjmbjoiopaddbjjblgnkl |
공식 URL | https://chromewebstore.google.com/detail/design-mode/kcohlfofdggbjmbjoiopaddbjjblgnkl |
설명 | Allows you to make temporary edits to any page. |
파일 크기 | 7.97 KB |
설치 횟수 | 5,005 |
현재 버전 | 0.2 |
최근 업데이트 | 2012-08-28 |
출시 날짜 | 2012-08-28 |
평점 | 3.65/5 총 17 개의 평점 |
개발자 | Bitquark |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Design Mode", "version": "0.2", "manifest_version": 2, "description": "Allows you to make temporary edits to any page.", "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": "img\/icon_19.png", "default_title": "Design Mode: off" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ] } } |