Enable right click

Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…

Что такое Enable right click?

Enable right click - это расширение Chrome, разработанное https://0-9.tumblr.com, и его основная функция - "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Enable right click

Скачайте файлы расширений Enable right click в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Enable right-click on pages where right-click is disabled.

Simply install this extension to make menus appear on pages where right-click is not available.

Source code is here.
https://github.com/kyo-ago/enable-right-click                    

Основная информация о расширении

Название Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
Официальный URL https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Описание Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Размер файла 246 KB
Количество установок 178,435
Текущая Версия 0.0.10
Последнее Обновление 2023-10-24
Дата публикации 2017-04-26
Рейтинг 3.57/5 Всего 545 оценок
Разработчик https://0-9.tumblr.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable right click",
    "version": "0.0.10",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_title": "Disable right click",
        "default_icon": "img\/icon128.png"
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "src\/DisableSettings.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/web_accessible_resources\/index.js"
    ]
}