Clipboard

Store copy items to Clipboard to be retrieved at a lather point

Clipboard क्या है?

Clipboard http://massinflux.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Store copy items to Clipboard to be retrieved at a lather point"।

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

screenshot

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

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

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

                        Store copy items to Clipboard to be retrieved at a lather point

To use, make a selection and copy it like you would usually do.
Upon right click, you will notice a new menu item called "Clipboard" here the recent copied items will be stored.

The menu is split into two "virtual" sections. The Primary area is used for most used copy selections. This menu needs to be created manually from the extension popup
Click on a sub menu button to copy the selected text to clipboard then click on the "Paste" button to use the selected text.

The recent copies can also be found by clicking on the top menu "Clipboard" icon, where they can be removed and moved around between Primary and Secondary menus

v 1.0.1
 -- improved popup options

v 1.0.2
 -- bug fixes

v 1.0.0
 -- initial release

I made this extension for my own needs, there will be bugs                    

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

नाम Clipboard Clipboard
ID fkbcnppplppaciohjpfecaaoodkimhli
आधिकारिक URL https://chrome.google.com/webstore/detail/clipboard/fkbcnppplppaciohjpfecaaoodkimhli
विवरण Store copy items to Clipboard to be retrieved at a lather point
फ़ाइल का आकार 116 KB
स्थापना संख्या 7,000
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2019-09-21
प्रकाशन तिथि 2019-09-21
रेटिंग 4.00/5 कुल 7 रेटिंग्स
डेवलपर http://massinflux.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://massinfluix.com
गोपनीयता नीति पृष्ठ URL http://massinflux.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clipboard",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Store copy items to Clipboard to be retrieved at a lather point",
    "homepage_url": "https:\/\/massinflux.com",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/inject\/jquery.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Clipboard",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "http:\/\/*\/*, https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}