Clipboard Inserter

A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY

Clipboard Inserter क्या है?

Clipboard Inserter Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY"।

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

screenshot

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

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

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

                        This addon, when turned on in a tab monitors your system clipboard and inserts its contents into the page whenever they change. You can customize tag name of the wrapping element, and chose the parent for inserted elements using a css selector in app options.

In order for this extension to work on local files (the file:// protocol) you need to change the "Allow access to file URLs" setting in the extension details.

Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY                    

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

नाम Clipboard Inserter Clipboard Inserter
ID deahejllghicakhplliloeheabddjajm
आधिकारिक URL https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm
विवरण A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
फ़ाइल का आकार 10.28 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 0.3.2
अंतिम अपडेट 2018-12-06
प्रकाशन तिथि 2018-12-06
रेटिंग 4.50/5 कुल 12 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kmltml/clipboard-inserter
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Inserter",
    "version": "0.3.2",
    "description": "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY",
    "icons": [],
    "applications": {
        "gecko": {
            "id": "@clipboard-inserter"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardRead",
        "storage",
        "file:\/\/*\/*"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icon\/icon16.png",
            "32": "icon\/icon32.png",
            "64": "icon\/icon64.png"
        },
        "default_title": "Toggle clipboard inserter"
    },
    "background": {
        "page": "bg\/index.html"
    },
    "options_ui": {
        "page": "options.html"
    }
}