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ファイルをダウンロード
DrawR拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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). 拡張機能の基本情報
| 名前 | |
| 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'"
} | |