Gyazo Download
Add a download button to Gyazo images
什么是Gyazo Download?
Gyazo Download是由RostiMelk开发的Chrome扩展程序,该扩展的主要功能是“Add a download button to Gyazo images”。
扩展截图
下载Gyazo Download扩展crx文件
下载Gyazo Download扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension simplifies the process of downloading your Gyazo images and videos. With a new download button added to all assets, you can now easily download them with just one click, saving you time and hassle. Whether you use Gyazo for work or personal projects, this feature is a useful addition that streamlines your workflow.
扩展基本信息
名称 | Gyazo Download |
ID | ibhpaofljfiopjggpgmfmhjempjhffjb |
官方URL | https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb |
简介 | Add a download button to Gyazo images |
文件大小 | 28.31 KB |
安装次数 | 121 |
当前版本 | 1.0 |
更新时间 | 2023-02-22 |
上架时间 | 2023-02-22 |
开发者 | RostiMelk |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/RostiMelk/gyazo-download |
帮助页面URL | https://github.com/RostiMelk/gyazo-download/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gyazo Download", "description": "Add a download button to Gyazo images", "version": "1.0", "icons": { "16": "icons\/icon16.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "content_scripts": [ { "matches": [ "https:\/\/gyazo.com\/*" ], "js": [ "js\/content_script.js" ] } ], "background": { "service_worker": "js\/background.js" }, "permissions": [ "downloads" ], "host_permissions": [ "https:\/\/gyazo.com\/*" ] } |