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. เป็นส่วนขยายของ Chrome ที่พัฒนาโดย santriseus และคุณลักษณะหลักของมันคือ "Extension helps detect if canvas is used at the web page and allows to export and save canvas content."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Canvas downloader. Find and export.

ดาวน์โหลดไฟล์ส่วนขยาย Canvas downloader. Find and export. ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}