Gyazo Download

Add a download button to Gyazo images

Apa itu Gyazo Download?

Gyazo Download adalah ekstensi Chrome yang dikembangkan oleh RostiMelk, dan fitur utamanya adalah "Add a download button to Gyazo images".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Gyazo Download

Unduh file ekstensi Gyazo Download dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Gyazo Download Gyazo Download
ID ibhpaofljfiopjggpgmfmhjempjhffjb
URL Resmi https://chromewebstore.google.com/detail/gyazo-download/ibhpaofljfiopjggpgmfmhjempjhffjb
Deskripsi Add a download button to Gyazo images
Ukuran File 28.31 KB
Jumlah Instalasi 121
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-02-22
Tanggal Publikasi 2023-02-22
Pengembang RostiMelk
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/RostiMelk/gyazo-download
URL Halaman Bantuan https://github.com/RostiMelk/gyazo-download/issues
Bahasa yang Didukung 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\/*"
    ]
}