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開發的Chrome擴展程式,該擴展的主要功能是“Allows users to grant direct clipboard access to web pages that use the W3C Clipboard API.”。

擴展截圖

screenshot

下載Clipboard Permission Manager擴展crx文件

下載Clipboard Permission Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}