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 |
| 官方網址 | 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
} | |