Tab Copy
Copy all tabs to clipboard. No bells and whistles.
什么是Tab Copy?
Tab Copy是由Reece开发的Chrome扩展程序,该扩展的主要功能是“Copy all tabs to clipboard. No bells and whistles.”。
扩展截图
下载Tab Copy扩展crx文件
下载Tab Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Copies the tabs that are open in the window to the clipboard 扩展基本信息
| 名称 | |
| ID | lmnpchdgonnfapjelemnfafmgkndeefc |
| 官方URL | https://chromewebstore.google.com/detail/tab-copy/lmnpchdgonnfapjelemnfafmgkndeefc |
| 简介 | Copy all tabs to clipboard. No bells and whistles. |
| 文件大小 | 10.02 KB |
| 安装次数 | 151 |
| 当前版本 | 1.0 |
| 更新时间 | 2019-11-19 |
| 上架时间 | 2019-11-19 |
| 开发者 | Reece |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab Copy",
"version": "1.0",
"description": "Copy all tabs to clipboard. No bells and whistles.",
"permissions": [
"activeTab",
"clipboardWrite",
"tabs"
],
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Copy to clipboard."
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E"
}
}
}
} | |