Canvas downloader. Find and export.

Extension helps detect if canvas is used at the web page and allows to export and save canvas content.

Canvas downloader. Find and export.란 무엇입니까?

Canvas downloader. Find and export.은(는) santriseus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension helps detect if canvas is used at the web page and allows to export and save canvas content."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Canvas downloader. Find and export. 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extension helps detect if canvas is used at the web page and allows to export and download static canvas content in multiple formats.
Extension could be helpful if creator of the web site disabled the canvas context menu with "Save As" option. 
You could see the counter with the number of detected canvas elements in the extension icon, if any canvas detected. 
Sometimes the counter at the icon could be different from the real amount of available canvas elements, because of the security concerns like "Cross-Origin Resource Sharing" policies applied to source images.                    

확장 프로그램 기본 정보

이름 Canvas downloader. Find and export. Canvas downloader. Find and export.
ID dgfcgcafnnbdpojemnkiiilnnghebgja
공식 URL https://chromewebstore.google.com/detail/canvas-downloader-find-an/dgfcgcafnnbdpojemnkiiilnnghebgja
설명 Extension helps detect if canvas is used at the web page and allows to export and save canvas content.
파일 크기 75.57 KB
설치 횟수 5,292
현재 버전 1.0.0
최근 업데이트 2024-01-03
출시 날짜 2018-07-27
평점 4.07/5 총 14 개의 평점
개발자 santriseus
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/santriseus/canvas-downloader
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas downloader. Find and export.",
    "short_name": "Canvas downloader.",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Extension helps detect if canvas is used at the web page and allows to export and save canvas content.",
    "homepage_url": "https:\/\/github.com\/santriseus\/canvas-detect-and-download",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "Canvas downloader. Detect and export.",
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "permissions": [
        "downloads"
    ]
}