Copy Paste Pro
Enable Copy , Paste , Select Text , Right Click On Websites
Copy Paste Pro क्या है?
Copy Paste Pro webhtg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enable Copy , Paste , Select Text , Right Click On Websites"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy Paste Pro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
------- 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" } ] } |