Extensions shortcut

Lets you create a keyboard shortcut to the extensions page

ما هو Extensions shortcut؟

Extensions shortcut هو إضافة Chrome تم تطويرها بواسطة metarmask، والميزة الرئيسية لها هي "Lets you create a keyboard shortcut to the extensions page".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Extensions shortcut

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

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

                        An extremely lightweight extension (only runs when used) which lets you specify a custom keyboard shortcut which opens the extensions page.

If turned on in the options, this extension will check if you already have an extension page open and switch to that one instead of opening a new. Because it is an option you don't have to trust this extension with a dangerous permission if you don't want to.

Extension icon by Ganeshk (derived from "Wiki puzzle.svg") and Mysid (derived from "Insertpad.svg") both licensed under GFDL (http://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0/), via Wikimedia Commons.                    

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

الاسم Extensions shortcut Extensions shortcut
ID boalecjkpmcokhlmpomldpdeohipkkda
عنوان URL الرسمي https://chromewebstore.google.com/detail/extensions-shortcut/boalecjkpmcokhlmpomldpdeohipkkda
الوصف Lets you create a keyboard shortcut to the extensions page
حجم الملف 12.73 KB
عدد التثبيتات 2,859
النسخة الحالية 2
آخر تحديث 2021-04-24
تاريخ النشر 2016-11-06
تقييم 4.60/5 مجموع تقييمات 10
المطور metarmask
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extensions shortcut",
    "description": "Lets you create a keyboard shortcut to the extensions page",
    "version": "2",
    "permissions": [
        "commands"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon\/128.png",
        "16": "icon\/16.png",
        "48": "icon\/48.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "open-extensions-page": {
            "description": "Open extensions page",
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options\/options.html"
    }
}