Gyazo Download
Add a download button to Gyazo images
Hvad er Gyazo Download?
Gyazo Download er en Chrome-udvidelse udviklet af RostiMelk, og dens hovedfunktion er "Add a download button to Gyazo images".
Udvidelsesskærmbilleder
Download Gyazo Download-udvidelses-CRX-fil
Download Gyazo Download-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Gyazo Download |
ID | ibhpaofljfiopjggpgmfmhjempjhffjb |
Officiel URL | https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb |
Beskrivelse | Add a download button to Gyazo images |
Filstørrelse | 28.31 KB |
Antal Installationer | 121 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-02-22 |
Udgivelsesdato | 2023-02-22 |
Udvikler | RostiMelk |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/RostiMelk/gyazo-download |
Hjælpeside-URL | https://github.com/RostiMelk/gyazo-download/issues |
Understøttede Sprog | 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\/*" ] } |