Quick Snip
Browse web and capture tabs you like, easy and quick.
O que é Quick Snip?
Quick Snip é uma extensão do Chrome desenvolvida por Frooty Studios, e sua principal característica é "Browse web and capture tabs you like, easy and quick.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Quick Snip
Baixe arquivos de extensão Quick Snip no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Quick Snip |
ID | gjjhmphibjpmjbeghgjgecennojdohgc |
URL Oficial | https://chromewebstore.google.com/detail/quick-snip/gjjhmphibjpmjbeghgjgecennojdohgc |
Descrição | Browse web and capture tabs you like, easy and quick. |
Tamanho do Arquivo | 903 KB |
Contagem de Instalações | 2,000 |
Versão Atual | 1.1.0 |
Última Atualização | 2023-03-01 |
Data de Publicação | 2022-01-10 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Frooty Studios |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } } |