Zi Screen
Browser screen shot, add task in trello
Cos'è Zi Screen?
Zi Screen è un'estensione di Chrome sviluppata da zzzwebit, e la sua funzione principale è "Browser screen shot, add task in trello".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Zi Screen
Scarica i file di estensione Zi Screen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Zi Screen |
ID | aaljegneefjgmnkomeomkaoiledhgjcl |
URL Ufficiale | https://chromewebstore.google.com/detail/zi-screen/aaljegneefjgmnkomeomkaoiledhgjcl |
Descrizione | Browser screen shot, add task in trello |
Dimensione del File | 259 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2021-08-19 |
Data di Pubblicazione | 2021-07-29 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | zzzwebit |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://ziscreen.com/ |
URL della Pagina di Aiuto | https://ziscreen.com/support |
URL della Pagina della Politica sulla Privacy | https://ziscreen.com/privacy |
Lingue Supportate | 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'" } } |