Enable right click

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

Vad är Enable right click?

Enable right click är en Chrome-tillägg utvecklad av https://0-9.tumblr.com, och dess huvudfunktion är "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Enable right click-förlängningens CRX-fil

Ladda ner Enable right click-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
Officiell webbadress https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Beskrivning Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Filstorlek 246 KB
Antal Installationer 178,435
Aktuell Version 0.0.10
Senast Uppdaterad 2023-10-24
Publiceringsdatum 2017-04-26
Betyg 3.57/5 Totalt 545 Betyg
Utvecklare https://0-9.tumblr.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}