ManyClip

A stack based copy/paste extension for Chrome.

ManyClip क्या है?

ManyClip John Wiegert द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A stack based copy/paste extension for Chrome."।

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

screenshot

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

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

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

                        This free, Open Source extension allows you to copy and paste stacks of text or data, making clipboard use even faster and more convenient in Chrome.
It’s easy to use:
1.       Highlight the text you’d like to copy

2.       Add it to clipboard with CTRL+ALT+C

3.       Repeat steps 1 & 2 as needed

4.       Paste each piece in reverse with CTRL+ALT+V

Perfect for making lists, speeding up data entry, streamlining the process of filling out online forms, and more!

If you have any issues please email the developer at [email protected] or file an issue at https://github.com/bigcakes/ManyClip                    

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

नाम ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
आधिकारिक URL https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
विवरण A stack based copy/paste extension for Chrome.
फ़ाइल का आकार 42.25 KB
स्थापना संख्या 245
वर्तमान संस्करण 0.2.0
अंतिम अपडेट 2017-07-29
प्रकाशन तिथि 2017-07-29
रेटिंग 2.00/5 कुल 1 रेटिंग्स
डेवलपर John Wiegert
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bigcakes/ManyClip
सहायता पृष्ठ URL https://github.com/bigcakes/ManyClip
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ManyClip",
    "description": "A stack based copy\/paste extension for Chrome.",
    "version": "0.2.0",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icons\/manyclip_48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/manyclip_16.png",
        "48": "icons\/manyclip_48.png",
        "128": "icons\/manyclip_128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "clipboardRead",
        "storage",
        "unlimitedStorage"
    ]
}