Canvas Capture
Canvas Element capture and auto named.
Wat is Canvas Capture?
Canvas Capture is een Chrome-extensie ontwikkeld door dama, en de belangrijkste functie is "Canvas Element capture and auto named.".
Extensie Screenshots
Download het CRX-bestand van de extensie Canvas Capture
Download Canvas Capture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
canvas要素の画像をページタイトル、取得日時付きのファイル名で1クリックで保存できます。
ver.0.3 manifest v3に対応 Basisinformatie over de Extensie
| Naam | |
| ID | cpkdmolbpdpjcdlnmakbippomfapnigd |
| Officiële URL | https://chromewebstore.google.com/detail/canvas-capture/cpkdmolbpdpjcdlnmakbippomfapnigd |
| Beschrijving | Canvas Element capture and auto named. |
| Bestandsgrootte | 12.34 KB |
| Aantal Installaties | 147 |
| Huidige Versie | 0.3 |
| Laatst Bijgewerkt | 2022-12-30 |
| Publicatiedatum | 2019-03-15 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | dama |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |