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 |
官方網址 | 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\/*" ] } |