Zi Screen
Browser screen shot, add task in trello
O que é Zi Screen?
Zi Screen é uma extensão do Chrome desenvolvida por zzzwebit, e sua principal característica é "Browser screen shot, add task in trello".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Zi Screen
Baixe arquivos de extensão Zi Screen 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
Zi Screen is a handy, modern service that allows to share screenshots instantly via the Internet for IT Team. Create visual proofs for bug reports, add it in Trello or share. Capture entire webpage at once with Zi Screen extension for Chrome.
Informações Básicas da Extensão
Nome | Zi Screen |
ID | aaljegneefjgmnkomeomkaoiledhgjcl |
URL Oficial | https://chromewebstore.google.com/detail/zi-screen/aaljegneefjgmnkomeomkaoiledhgjcl |
Descrição | Browser screen shot, add task in trello |
Tamanho do Arquivo | 259 KB |
Contagem de Instalações | 21 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-08-19 |
Data de Publicação | 2021-07-29 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | zzzwebit |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://ziscreen.com/ |
URL da Página de Ajuda | https://ziscreen.com/support |
URL da Página de Política de Privacidade | https://ziscreen.com/privacy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1", "name": "Zi Screen", "short_name": "ziscreen", "manifest_version": 3, "description": "Browser screen shot, add task in trello", "action": { "default_title": "Click to get an screen" }, "permissions": [ "activeTab", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js", "build.js" ] } ], "icons": { "16": "img\/fav-16.png", "32": "img\/fav-32.png", "48": "img\/fav-48.png", "96": "img\/fav-96.png", "128": "img\/fav-128.png", "256": "img\/fav-256.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |