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 |
官方URL | 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'" } } |