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