Enable right click

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

Apa itu Enable right click?

Enable right click adalah ekstensi Chrome yang dikembangkan oleh https://0-9.tumblr.com, dan fitur utamanya adalah "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Enable right click

Unduh file ekstensi Enable right click dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
URL Resmi https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
Deskripsi Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
Ukuran File 246 KB
Jumlah Instalasi 178,435
Versi Saat Ini 0.0.10
Terakhir Diperbarui 2023-10-24
Tanggal Publikasi 2017-04-26
Penilaian 3.57/5 Total 545 Penilaian
Pengembang https://0-9.tumblr.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}