Copy Paste Pro
Enable Copy , Paste , Select Text , Right Click On Websites
什么是Copy Paste Pro?
Copy Paste Pro是由webhtg开发的Chrome扩展程序,该扩展的主要功能是“Enable Copy , Paste , Select Text , Right Click On Websites”。
扩展截图
下载Copy Paste Pro扩展crx文件
下载Copy Paste Pro扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
------- NOTE --------- ---- MAKE SURE TO RELOAD THE WEBPAGE AFTER INSTALLING THIS EXTENSION . ---- Since the extension needs to know the active tabs , so the basic permission it requires is "tabs" . But Chrome will label it as "can read and change all your data on websites you visit " while asking for the permission .This extension does not track or use your browsing history in any ways.The only information it needs is the active states of the tabs. If you have any doubt regarding the same you can always analyze the code of this extension on github . Copy Paste Pro is a solution for websites that block Copy , Paste , Select Text and Right clicks . - This extension works separately for each tab . - Clicking on the extension icon will enable/disable it . - The extension gets disabled on page reload . - Check the status enabled (green tick) or disabled (grey tick) of the extension on the toolbar (top right corner). Youtube - https://www.youtube.com/channel/UCOBsnzqtrS0Hek2a0ceREyQ
扩展基本信息
名称 | Copy Paste Pro |
ID | epgndihjbcepnbadocaoofjnfaophlio |
官方URL | https://chromewebstore.google.com/detail/copy-paste-pro/epgndihjbcepnbadocaoofjnfaophlio |
简介 | Enable Copy , Paste , Select Text , Right Click On Websites |
文件大小 | 20.87 KB |
安装次数 | 44,027 |
当前版本 | 0.5.0 |
更新时间 | 2022-10-08 |
上架时间 | 2018-10-22 |
评分 | 4.49/5 共55次评分 |
开发者 | webhtg |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sutuboss/Past-Pro |
帮助页面URL | https://github.com/sutuboss/ |
隐私政策页面URL | https://github.com/sutuboss/Copy-Past-Pro/blob/master/privacy.md |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Paste Pro", "version": "0.5.0", "description": "Enable Copy , Paste , Select Text , Right Click On Websites", "author": "Sutu", "browser_action": { "default_title": "Copy Paste Pro is Disabled", "default_icon": "disable.png" }, "icons": { "64": "copy_past_pro.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "all_frames": true, "js": [ "content.js" ], "run_at": "document_start" } ] } |