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 - это расширение Chrome, разработанное dimavanguard, и его основная функция - "Allow selection and copy, right click and paste on any webpage with copy protection".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Allow Select And Copy

Скачайте файлы расширений 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
Официальный URL 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
        }
    ]
}