Copy Paste Pro
Enable Copy , Paste , Select Text , Right Click On Websites
O que é Copy Paste Pro?
Copy Paste Pro é uma extensão do Chrome desenvolvida por webhtg, e sua principal característica é "Enable Copy , Paste , Select Text , Right Click On Websites".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Copy Paste Pro
Baixe arquivos de extensão Copy Paste Pro no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
------- 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
Informações Básicas da Extensão
Nome | Copy Paste Pro |
ID | epgndihjbcepnbadocaoofjnfaophlio |
URL Oficial | https://chromewebstore.google.com/detail/copy-paste-pro/epgndihjbcepnbadocaoofjnfaophlio |
Descrição | Enable Copy , Paste , Select Text , Right Click On Websites |
Tamanho do Arquivo | 20.87 KB |
Contagem de Instalações | 44,027 |
Versão Atual | 0.5.0 |
Última Atualização | 2022-10-08 |
Data de Publicação | 2018-10-22 |
Classificação | 4.49/5 Total de 55 Avaliações |
Desenvolvedor | webhtg |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sutuboss/Past-Pro |
URL da Página de Ajuda | https://github.com/sutuboss/ |
URL da Página de Política de Privacidade | https://github.com/sutuboss/Copy-Past-Pro/blob/master/privacy.md |
Idiomas Suportados | 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" } ] } |