Gyazo Download

Add a download button to Gyazo images

Gyazo Downloadคืออะไร?

Gyazo Download เป็นส่วนขยายของ Chrome ที่พัฒนาโดย RostiMelk และคุณลักษณะหลักของมันคือ "Add a download button to Gyazo images"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gyazo Download

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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\/*"
    ]
}