DrawR
This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot.
DrawR란 무엇입니까?
DrawR은(는) https://www.laurencecliff.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot."입니다.
확장 프로그램 스크린샷
DrawR 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to draw on the current web page, pick the line colour and thickness and take a screenshot. You can also choose to draw circles, rectangles and straight lines. The screenshot is automatically downloaded in the browser. Click to draw freehand. Hold Shift whilst clicking to draw a straight line. Hold Ctrl whilst clicking to draw a circle. Hold Alt whilst clicking to draw a rectangle. Ctrl + Shift + S - triggers the popup and starts the extension on the page. Ctrl + Shift + Q - triggers clearing the drawings and closing the extension (with a prompt to confirm).
확장 프로그램 기본 정보
이름 | DrawR |
ID | lbbkdcdfpgdbgfceieeicbpfhpcemppn |
공식 URL | https://chromewebstore.google.com/detail/drawr/lbbkdcdfpgdbgfceieeicbpfhpcemppn |
설명 | This extension allows you to draw on the current web page, pick the line colour and thickness and take a cropped screenshot. |
파일 크기 | 39.25 KB |
설치 횟수 | 2,075 |
현재 버전 | 1.0 |
최근 업데이트 | 2019-10-02 |
출시 날짜 | 2019-10-02 |
평점 | 1.69/5 총 13 개의 평점 |
개발자 | https://www.laurencecliff.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_idle" } ], "permissions": [ "activeTab", "storage" ], "icons": { "16": "assets\/icon_16.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup\/popup.html", "default_title": "__MSG_extensionName__" }, "web_accessible_resources": [ "assets\/*.png" ], "default_locale": "en", "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+S", "mac": "Command+Shift+S", "chromeos": "Ctrl+Shift+S", "linux": "Ctrl+Shift+S" } }, "clear-canvas": { "suggested_key": { "default": "Ctrl+Shift+Q", "mac": "Command+Shift+Q" }, "description": "Removes Drawr canvas" } }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |