Zi Screen
Browser screen shot, add task in trello
什麼是Zi Screen?
Zi Screen是由zzzwebit開發的Chrome擴展程式,該擴展的主要功能是“Browser screen shot, add task in trello”。
擴展截圖
下載Zi Screen擴展crx文件
下載Zi Screen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Zi Screen |
ID | aaljegneefjgmnkomeomkaoiledhgjcl |
官方網址 | https://chromewebstore.google.com/detail/zi-screen/aaljegneefjgmnkomeomkaoiledhgjcl |
簡介 | Browser screen shot, add task in trello |
檔案大小 | 259 KB |
安裝次數 | 21 |
目前版本 | 1.0.1 |
更新時間 | 2021-08-19 |
上架時間 | 2021-07-29 |
評分 | 5.00/5 共 1 次評分 |
開發者 | zzzwebit |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://ziscreen.com/ |
說明頁面URL | https://ziscreen.com/support |
隱私政策頁面URL | https://ziscreen.com/privacy |
支援的語言 | 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'" } } |