Quick Snip
Browse web and capture tabs you like, easy and quick.
Quick Snipとは何ですか?
Quick SnipはFrooty Studiosによって開発されたChromeの拡張機能で、その主な機能は「Browse web and capture tabs you like, easy and quick.」です。
拡張機能のスクリーンショット
Quick Snip拡張機能のCRXファイルをダウンロード
Quick Snip拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Quick tab capture tool. * Take screenshot of full tab. * Capture specific region screenshot. Once captured! you're screenshot will be ready to be used by pasting it any where in your documents. *****Version 1.1***** *Added shortcuts to capture screen On windows *Full screen - Ctrl+Shift+1 *Area capture - Ctrl+Shift+2 On mac *Full screen - Command+shift+1 *Area capture - Command+shift+2 *notifications on browser tab *Bug fixes *****Version 1.0***** *Updated extension with the latest extension development environment manifest v3. *Bug fixes
拡張機能の基本情報
名前 | Quick Snip |
ID | gjjhmphibjpmjbeghgjgecennojdohgc |
公式URL | https://chromewebstore.google.com/detail/quick-snip/gjjhmphibjpmjbeghgjgecennojdohgc |
説明 | Browse web and capture tabs you like, easy and quick. |
ファイルサイズ | 903 KB |
インストール数 | 2,000 |
現在のバージョン | 1.1.0 |
最終更新日 | 2023-03-01 |
公開日 | 2022-01-10 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Frooty Studios |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.1.0", "name": "Quick Snip", "icons": { "32": "assets\/icons\/32.png", "64": "assets\/icons\/64.png" }, "action": { "default_icon": "assets\/icons\/64.png", "default_popup": "\/view\/popup.html", "default_title": "Take a Screenshot" }, "description": "Browse web and capture tabs you like, easy and quick.", "permissions": [ "activeTab", "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle", "js": [ "utility\/notification.js", "lib\/customLib\/urlValidator.js", "content\/content_script.js" ], "css": [ "styles\/extraContent.css" ] } ], "background": { "service_worker": "mainServiceWorker.js" }, "web_accessible_resources": [ { "resources": [ "assets\/icons\/32.png" ], "matches": [ "*:\/\/*\/*" ] } ], "commands": { "full_screenshot": { "suggested_key": { "windows": "Ctrl+Shift+1", "mac": "Command+Shift+1", "linux": "Ctrl+Shift+1" }, "description": "captures full screenshot" }, "region_screenshot": { "suggested_key": { "windows": "Ctrl+Shift+2", "mac": "Command+Shift+2", "linux": "Ctrl+Shift+2" }, "description": "captures region screenshot" } } } |