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 |
Eメール | [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\/*" ] } |