Copy-Code
Creates a copy to clipboard button on every code text.
什麼是Copy-Code?
Copy-Code是由João da Torre Pereira開發的Chrome擴展程式,該擴展的主要功能是“Creates a copy to clipboard button on every code text.”。
擴展截圖
下載Copy-Code擴展crx文件
下載Copy-Code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Appends a button to all code snippets to instantly copy the code to clipboard. Extension available for stackoverflow.com, moodle.up.pt and much more. This project is open source and you also can contribute with ideas
擴展基本資訊
名稱 | Copy-Code |
ID | heokjaibaafegafgaaodfgjjgjffnenk |
官方網址 | https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk |
簡介 | Creates a copy to clipboard button on every code text. |
檔案大小 | 569 KB |
安裝次數 | 226 |
目前版本 | 1.3 |
更新時間 | 2023-08-05 |
上架時間 | 2022-06-01 |
評分 | 5.00/5 共 1 次評分 |
開發者 | João da Torre Pereira |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/thePeras/copy-code-extension |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy-Code", "version": "1.3", "description": "Creates a copy to clipboard button on every code text.", "icons": { "48": "icons\/copy-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/stackoverflow.com\/*", "https:\/\/stackoverflowteams.com\/*", "https:\/\/*.stackexchange.com\/*", "https:\/\/serverfault.com\/*", "https:\/\/superuser.com\/*", "https:\/\/askubuntu.com\/*", "https:\/\/moodle.up.pt\/*", "https:\/\/www.w3resource.com\/*", "https:\/\/w3resource.com\/*", "https:\/\/villate.org\/*", "https:\/\/*.medium.com\/*", "https:\/\/www.npmjs.com\/*", "https:\/\/forums.raspberrypi.com\/*" ], "js": [ "main.js" ] } ] } |