Always Copy
A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
什么是Always Copy?
Always Copy是由japamat开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.”。
扩展截图
下载Always Copy扩展crx文件
下载Always Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Lets you copy highlighted text to your clip board even when the page doesn't allow you to do so by right clicking the traditional copy button or using ⌘ + c (windows: ctrl + c) doesn't work. 扩展基本信息
| 名称 | |
| ID | pfiieiadpcemdkcaaicekbiokgnojnim |
| 官方URL | https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim |
| 简介 | A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work. |
| 文件大小 | 6.92 KB |
| 安装次数 | 288 |
| 当前版本 | 1.0 |
| 更新时间 | 2020-06-17 |
| 上架时间 | 2020-06-16 |
| 开发者 | japamat |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Always Copy",
"version": "1.0",
"description": "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.",
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"16": "images\/copy_16.png",
"32": "images\/copy_32.png",
"48": "images\/copy_48.png",
"128": "images\/copy_128.png"
}
},
"icons": {
"16": "images\/copy_16.png",
"32": "images\/copy_32.png",
"48": "images\/copy_48.png",
"128": "images\/copy_128.png"
},
"manifest_version": 2
} | |