Custom Right-Click Menu

Create a custom right-click menu and choose the links and scripts you want in it.

ما هو Custom Right-Click Menu؟

Custom Right-Click Menu هو إضافة Chrome تم تطويرها بواسطة awsdfgvhbjn.dev، والميزة الرئيسية لها هي "Create a custom right-click menu and choose the links and scripts you want in it.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Custom Right-Click Menu

قم بتنزيل ملفات الامتداد Custom Right-Click Menu بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Create your own entries in the right-click menu. Add custom JavasScript scripts, links, sub-menus and custom CSS stylesheets that activate when you click them in your right-click menu and do anything you want all from your right-click menu. Featuring full GreaseMonkey compatibility for userscripts and Stylish compatibility for userstyles.

Using the CRM API, the chrome APIs that come with it, and the background script, you have the same freedom in writing JavaScript scripts that you would have writing a chrome extension except that this is a lot easier. This allows you to write just about anything you want and incorporate it into your or someone else's right-click menu by sharing it.

For more information check out the source code over at https://github.com/SanderRonde/CustomRightClickMenu                    

معلومات أساسية عن التمديد

الاسم Custom Right-Click Menu Custom Right-Click Menu
ID onnbmgmepodkilcbdodhfepllfmafmlj
عنوان URL الرسمي https://chromewebstore.google.com/detail/custom-right-click-menu/onnbmgmepodkilcbdodhfepllfmafmlj
الوصف Create a custom right-click menu and choose the links and scripts you want in it.
حجم الملف 4.51 MB
عدد التثبيتات 6,030
النسخة الحالية 2.2.14
آخر تحديث 2021-02-10
تاريخ النشر 2020-04-27
تقييم 3.93/5 مجموع تقييمات 43
المطور awsdfgvhbjn.dev
نوع الدفع free
موقع الإضافة https://github.com/SanderRonde/CustomRightClickMenu
عنوان صفحة المساعدة https://github.com/SanderRonde/CustomRightClickMenu/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "options_page": "html\/options.html",
    "name": "Custom Right-Click Menu",
    "description": "Create a custom right-click menu and choose the links and scripts you want in it.",
    "version": "2.2.14",
    "short_name": "CRM",
    "minimum_chrome_version": "26",
    "background": {
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/polyfills\/browser.js",
                "js\/contentscripts\/contentscript.js"
            ]
        },
        {
            "matches": [
                "http:\/\/userstyles.org\/*",
                "https:\/\/userstyles.org\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "js\/polyfills\/browser.js",
                "js\/contentscripts\/userstyles.js"
            ]
        },
        {
            "matches": [
                "https:\/\/openusercss.org\/*",
                "https:\/\/openusercss.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "js\/polyfills\/browser.js",
                "js\/contentscripts\/openusercss.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "include_globs": [
                "*.user.css",
                "*.user.style"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "js": [
                "js\/polyfills\/browser.js",
                "js\/contentscripts\/usercss.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "permissions": [
        "",
        "activeTab",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "tabs"
    ],
    "web_accessible_resources": [
        "js\/jquery-2.0.3.js",
        "js\/crmapi.js",
        "html\/install.html",
        "html\/logging.html"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "commands": {
        "crm_command_01": {
            "description": "CRM Keyboard Shortcut number 1",
            "global": true
        },
        "crm_command_02": {
            "description": "CRM Keyboard Shortcut number 2",
            "global": true
        },
        "crm_command_03": {
            "description": "CRM Keyboard Shortcut number 3",
            "global": true
        },
        "crm_command_04": {
            "description": "CRM Keyboard Shortcut number 4",
            "global": true
        },
        "crm_command_05": {
            "description": "CRM Keyboard Shortcut number 5",
            "global": true
        },
        "crm_command_06": {
            "description": "CRM Keyboard Shortcut number 6",
            "global": true
        },
        "crm_command_07": {
            "description": "CRM Keyboard Shortcut number 7",
            "global": true
        },
        "crm_command_08": {
            "description": "CRM Keyboard Shortcut number 8",
            "global": true
        },
        "crm_command_09": {
            "description": "CRM Keyboard Shortcut number 9",
            "global": true
        },
        "crm_command_10": {
            "description": "CRM Keyboard Shortcut number 10",
            "global": true
        }
    },
    "incognito": "spanning",
    "icons": {
        "16": "icon-supersmall.png",
        "48": "icon-small.png",
        "128": "icon-large.png"
    }
}