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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}