Gyazo Download
Add a download button to Gyazo images
Was ist Gyazo Download?
Gyazo Download ist eine Chrome-Erweiterung, die von RostiMelk entwickelt wurde, und ihr Hauptmerkmal ist "Add a download button to Gyazo images".
Erweiterungsscreenshots
Gyazo Download-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gyazo Download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Gyazo Download |
ID | ibhpaofljfiopjggpgmfmhjempjhffjb |
Offizielle URL | https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb |
Beschreibung | Add a download button to Gyazo images |
Dateigröße | 28.31 KB |
Installationsanzahl | 121 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-02-22 |
Veröffentlichungsdatum | 2023-02-22 |
Entwickler | RostiMelk |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/RostiMelk/gyazo-download |
Hilfeseite URL | https://github.com/RostiMelk/gyazo-download/issues |
Unterstützte Sprachen | 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\/*" ] } |