Clipboard Permission Manager

Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.

Clipboard Permission Manager क्या है?

Clipboard Permission Manager https://glyptodon.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API."।

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

screenshot

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

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

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

                        Clipboard Permission Manager is a browser extension which allows users to grant JavaScript access to the clipboard on a per-page basis. It should work with any page that uses the W3C Clipboard API.

Chrome restricts clipboard access to very specific cases, each of which requires user interaction, and does not provide a mechanism for manually granting access such that user interaction is not required going forward.

This extension is intended to provide such a mechanism, and it is our hope that mainstream browsers will provide such a mechanism on their own in the future, rendering this extension unnecessary.

This extension is open source and licensed under the MIT license. Its source code can be found on GitHub:

https://github.com/glyptodon/clipboard-permission-manager                    

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

नाम Clipboard Permission Manager Clipboard Permission Manager
ID ipbhneeanpgkaleihlknhjiaamobkceh
आधिकारिक URL https://chromewebstore.google.com/detail/clipboard-permission-mana/ipbhneeanpgkaleihlknhjiaamobkceh
विवरण Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.
फ़ाइल का आकार 30.35 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 0.4
अंतिम अपडेट 2018-05-03
प्रकाशन तिथि 2018-05-02
रेटिंग 2.87/5 कुल 15 रेटिंग्स
डेवलपर https://glyptodon.org
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/glyptodon/clipboard-permission-manager
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard Permission Manager",
    "version": "0.4",
    "description": "Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.",
    "icons": {
        "16": "icons\/clipboard-allow-16.png",
        "32": "icons\/clipboard-allow-32.png",
        "48": "icons\/clipboard-allow-48.png",
        "64": "icons\/clipboard-allow-64.png",
        "128": "icons\/clipboard-allow-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "private\/background\/clipboardService.js",
            "private\/background\/popupService.js"
        ]
    },
    "page_action": {
        "default_popup": "private\/popup\/popup.html",
        "default_icon": {
            "19": "private\/popup\/icons\/clipboard-maybe-19.png",
            "38": "private\/popup\/icons\/clipboard-maybe-38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "private\/content\/init.js",
                "private\/content\/clipboardBroker.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "public\/execCommand.js"
    ]
}