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 |
| 官方URL | 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"
}
} | |