CopyCat
Keeps your clipboard history.
CopyCat क्या है?
CopyCat CopyCat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keeps your clipboard history."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CopyCat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A minimal tool used to keep track of your copies and use shortcuts to access them. shortcuts: ctrl + shift + 1 => copy 1st in queue ctrl + shift + 2 => copy 2nd in queue ctrl + shift + 3 => copy 3rd in queue
एक्सटेंशन की मूल जानकारी
नाम | CopyCat |
ID | plplibpncobkhfgklpdofcefahjdmgmg |
आधिकारिक URL | https://chromewebstore.google.com/detail/copycat/plplibpncobkhfgklpdofcefahjdmgmg |
विवरण | Keeps your clipboard history. |
फ़ाइल का आकार | 218 KB |
स्थापना संख्या | 68 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2021-03-19 |
प्रकाशन तिथि | 2021-03-18 |
रेटिंग | 4.40/5 कुल 5 रेटिंग्स |
डेवलपर | CopyCat |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "copyCat", "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": "imgs\/38.png", "default_popup": "popup.html", "default_title": "copyCat - Clipboard History" }, "description": "Keeps your clipboard history.", "icons": { "128": "imgs\/128.png", "16": "imgs\/16.png", "48": "imgs\/48.png" }, "manifest_version": 2, "name": "CopyCat", "offline_enabled": true, "permissions": [ "clipboardWrite", "clipboardRead" ], "version": "1.0", "commands": [ { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "MacCtrl+Shift+1" }, "description": "Paste the 1st text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "MacCtrl+Shift+2" }, "description": "Paste the 2nd text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "MacCtrl+Shift+3" }, "description": "Paste the 3rd text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+4", "mac": "MacCtrl+Shift+4" }, "description": "Paste the 4th text in the queue" } ] } |