Gyazo Download

Add a download button to Gyazo images

Vad är Gyazo Download?

Gyazo Download är en Chrome-tillägg utvecklad av RostiMelk, och dess huvudfunktion är "Add a download button to Gyazo images".

Tilläggsskärmbilder

screenshot

Ladda ner Gyazo Download-förlängningens CRX-fil

Ladda ner Gyazo Download-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Gyazo Download Gyazo Download
ID ibhpaofljfiopjggpgmfmhjempjhffjb
Officiell webbadress https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb
Beskrivning Add a download button to Gyazo images
Filstorlek 28.31 KB
Antal Installationer 121
Aktuell Version 1.0
Senast Uppdaterad 2023-02-22
Publiceringsdatum 2023-02-22
Utvecklare RostiMelk
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/RostiMelk/gyazo-download
Hjälpsida URL https://github.com/RostiMelk/gyazo-download/issues
Stödda Språk 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\/*"
    ]
}