Canvas Capture
Canvas Element capture and auto named.
什麼是Canvas Capture?
Canvas Capture是由dama開發的Chrome擴展程式,該擴展的主要功能是“Canvas Element capture and auto named.”。
擴展截圖
下載Canvas Capture擴展crx文件
下載Canvas Capture擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
canvas要素の画像をページタイトル、取得日時付きのファイル名で1クリックで保存できます。
ver.0.3 manifest v3に対応 擴展基本資訊
| 名稱 | |
| ID | cpkdmolbpdpjcdlnmakbippomfapnigd |
| 官方網址 | 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"
}
} | |