Allow Select And Copy

Allow selection and copy, right click and paste on any webpage with copy protection

什麼是Allow Select And Copy?

Allow Select And Copy是由dimavanguard開發的Chrome擴展程式,該擴展的主要功能是“Allow selection and copy, right click and paste on any webpage with copy protection”。

擴展截圖

screenshot
screenshot
screenshot

下載Allow Select And Copy擴展crx文件

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

擴展使用說明

                        Sometimes you enter a website where is some usefull information, but you can not select it and/or copy. This extension make it possible! Moreover, extension will work automatically after few seconds when you enter the website.

************ULTRA MODE************
Press ALT + SHIFT + A to enter ULTRA MODE
On some sites will be necessary to enter ULTRA MODE in order to select text.
************ULTRA MODE************                    

擴展基本資訊

名稱 Allow Select And Copy Allow Select And Copy
ID lamaakaemgdclpnfbofmhpkanfnojjch
官方網址 https://chromewebstore.google.com/detail/allow-select-and-copy/lamaakaemgdclpnfbofmhpkanfnojjch
簡介 Allow selection and copy, right click and paste on any webpage with copy protection
檔案大小 14.97 KB
安裝次數 163,666
目前版本 3.1.5
更新時間 2018-01-06
上架時間 2018-01-06
評分 3.79/5 共 246 次評分
開發者 dimavanguard
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Allow Select And Copy",
    "short_name": "Copy Unblock",
    "description": "Allow selection and copy, right click and paste on any webpage with copy protection",
    "version": "3.1.5",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "ALT + SHIFT + A to enter ULTRA COPY MODE.\nClick to open menu"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}