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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension helps detect if canvas is used at the web page and allows to export and save canvas content."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Canvas downloader. Find and export. एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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. |
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" ] } |