Canvas Capture

Canvas Element capture and auto named.

Canvas Capture란 무엇입니까?

Canvas Capture은(는) dama에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Canvas Element capture and auto named."입니다.

확장 프로그램 스크린샷

screenshot

Canvas Capture 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        canvas要素の画像をページタイトル、取得日時付きのファイル名で1クリックで保存できます。

ver.0.3 manifest v3に対応                    

확장 프로그램 기본 정보

이름 Canvas Capture Canvas Capture
ID cpkdmolbpdpjcdlnmakbippomfapnigd
공식 URL https://chromewebstore.google.com/detail/canvas-capture/cpkdmolbpdpjcdlnmakbippomfapnigd
설명 Canvas Element capture and auto named.
파일 크기 12.34 KB
설치 횟수 147
현재 버전 0.3
최근 업데이트 2022-12-30
출시 날짜 2019-03-15
평점 5.00/5 총 1 개의 평점
개발자 dama
이메일 [email protected]
결제 유형 free
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas Capture",
    "version": "0.3",
    "manifest_version": 3,
    "description": "Canvas Element capture and auto named.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "options_ui": {
        "open_in_tab": false,
        "page": "option.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}