Clipboard History

Extension to save history of copied text in browser

Clipboard History क्या है?

Clipboard History Saif As द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to save history of copied text in browser"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Clipboard History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        it saves each item copied on the clipboard allowing access to any of those items at any time later.

Features:

● Hovering on one item will show all the text content in the tooltip

● Clicking on one item will copy the text to clipboard

● Searching for text will search all the items for matching text

● Clicking on the X button near each item will delete the item from the list

● Clicking on clear saved text will clear all the saved text



Isn't working as expected?
Please send me mail to: [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम Clipboard History Clipboard History
ID mhokbaagmjlbflncohdhinppihlojpco
आधिकारिक URL https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco
विवरण Extension to save history of copied text in browser
फ़ाइल का आकार 177 KB
स्थापना संख्या 1,677
वर्तमान संस्करण 1.5
अंतिम अपडेट 2021-11-01
प्रकाशन तिथि 2020-07-15
रेटिंग 2.33/5 कुल 3 रेटिंग्स
डेवलपर Saif As
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clipboard History",
    "version": "1.5",
    "description": "Extension to save history of copied text in browser",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png",
        "512": "icons\/icon512.png"
    },
    "action": {
        "default_icon": "icons\/icon512.png",
        "default_popup": "src\/browser_actions\/popup.html",
        "default_title": "Clipboard History"
    },
    "background": {
        "service_worker": "src\/bg\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/browser_actions\/content.js"
            ]
        }
    ]
}