ShortcutKey2URL for Chrome

ShortcutKey2URL provide a shortcut key to easily access frequently visit sites.

什么是ShortcutKey2URL for Chrome?

ShortcutKey2URL for Chrome是由https://www.enjoyxstudy.com开发的Chrome扩展程序,该扩展的主要功能是“ShortcutKey2URL provide a shortcut key to easily access frequently visit sites.”。

扩展截图

screenshot
screenshot
screenshot

下载ShortcutKey2URL for Chrome扩展crx文件

下载ShortcutKey2URL for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ShortcutKey2URL for Chrome is an extension for Google Chrome that allows you to open, and move url using shortcut keys. You can also run JavaScript.

Display the action list with the startup key and execute the action with the next key.

The startup key default is Ctrl+Period(on mac, Command+Comma). You can change this key later.

Characters that can be used as keys are not limited to one character. It can be set as multiple characters. ShrotcutKey2URL executes its action from the characters entered consecutively as keys when the target is narrowed down to one.

The items that can be set as actions are as follows.
* Jump to URL. For already opened URL, go to that tab. Open it as a new tab if it is not already open.
* Open URL in new tab.
* Open URL in current tab.
* Execute the JavaScript on the current tab.
* Open URL as a new tab and then execute the JavaScript.
* Open specified URL in incognito window.
* Open same URL as the current tab in incognito window.                    

扩展基本信息

名称 ShortcutKey2URL for Chrome ShortcutKey2URL for Chrome
ID hfohmffbfcobmhfgpkbcjjaijmfplcdg
官方URL https://chromewebstore.google.com/detail/shortcutkey2url-for-chrom/hfohmffbfcobmhfgpkbcjjaijmfplcdg
简介 ShortcutKey2URL provide a shortcut key to easily access frequently visit sites.
文件大小 229 KB
安装次数 2,186
当前版本 1.6.2
更新时间 2023-11-06
上架时间 2020-03-23
评分 5.00/5 共10次评分
开发者 https://www.enjoyxstudy.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/onozaty/chrome-shortcutkey2url
支持的语言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "1.6.2",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/onozaty\/chrome-shortcutkey2url",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "actions.js",
            "settings.js",
            "handler.js",
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": {
            "128": "icons\/icon128.png"
        },
        "default_title": "ShortcutKey2URL",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Command+Comma"
            }
        }
    },
    "default_locale": "en"
}