Extensions shortcut

Lets you create a keyboard shortcut to the extensions page

Extensions shortcut là gì?

Extensions shortcut là một tiện ích mở rộng Chrome được phát triển bởi metarmask, và tính năng chính của nó là "Lets you create a keyboard shortcut to the extensions page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Extensions shortcut

Tải xuống các tệp mở rộng Extensions shortcut dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Extensions shortcut Extensions shortcut
ID boalecjkpmcokhlmpomldpdeohipkkda
URL Chính Thức https://chromewebstore.google.com/detail/extensions-shortcut/boalecjkpmcokhlmpomldpdeohipkkda
Mô tả Lets you create a keyboard shortcut to the extensions page
Kích Thước Tệp 12.73 KB
Số Lần Cài Đặt 2,859
Phiên Bản Hiện Tại 2
Cập Nhật Lần Cuối 2021-04-24
Ngày Phát Hành 2016-11-06
Đánh Giá 4.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển metarmask
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}