Gyazo Download

Add a download button to Gyazo images

Gyazo Download란 무엇입니까?

Gyazo Download은(는) RostiMelk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a download button to Gyazo images"입니다.

확장 프로그램 스크린샷

screenshot

Gyazo Download 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}