Speed Dial for Google Chrome™

This extension allows for quick access to bookmarks using keyboard shortcuts.

Speed Dial for Google Chrome™とは何ですか?

Speed Dial for Google Chrome™はIlia Koulinitchによって開発されたChromeの拡張機能で、その主な機能は「This extension allows for quick access to bookmarks using keyboard shortcuts.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Speed Dial for Google Chrome™拡張機能のCRXファイルをダウンロード

Speed Dial for Google Chrome™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows for quick access to bookmarks using keyboard shortcuts.

The number of the speed dial for each bookmark is determined by the order of the bookmarks in your bookmarks bar. If you have a folder called 'Speed Dial' in your bookmarks bar, its bookmarks override the ones on the bookmarks bar (if you're the type of person who prefers to keep their bookmarks bar free for other things) for Speed Dial purposes. There are also options to let you:
Open folders (all bookmarks in a folder will open in new tabs).
Specify if you want bookmarks to be opened in a new tab instead of the current one.

New in version 2.1:
Invoke Javascript bookmarklets on the current page (but only if you enable it). This one is due to user demand, so I hope it makes everyone happy to have this option.

Due to limitations set on extensions, the keyboard shortcuts are not fully enabled by default. You can enable them from the extensions menu by typing "chrome://extensions" in the address bar and clicking on the keyboard shortcuts button at the bottom of the page.

Permissions notice:
When installing, Chrome will ask you to give the extension access to bookmarks and "read and change all your data on the websites you visit". That last one sounds pretty scary, but the extension needs access to your bookmarks to open them from speed dial, and the other one is what lets us modify what's on the current tab/open new ones/run bookmarklets if enabled. The extension doesn't actually look at your browsing history or do anything with it -- I really don't want to know what you've been looking at and I value the concept of privacy so I understand why seeing Chrome show that message would cause concerns.

Privacy Policy: This extension does not store, share, or transmit any personal information or browsing data to anyone including the developers, Google, or any third party.

Google Chrome™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

拡張機能の基本情報

名前 Speed Dial for Google Chrome™ Speed Dial for Google Chrome™
ID mgnlacbnbihgghlfdnpedhlnnkomldlg
公式URL https://chrome.google.com/webstore/detail/speed-dial-for-google-chr/mgnlacbnbihgghlfdnpedhlnnkomldlg
説明 This extension allows for quick access to bookmarks using keyboard shortcuts.
ファイルサイズ 15.97 KB
インストール数 1,000
現在のバージョン 2.1
最終更新日 2020-11-19
公開日 2016-04-16
評価 4.22/5 合計 37 レビュー
開発者 Ilia Koulinitch
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Speed Dial for Google Chrome\u2122",
    "short_name": "Speed Dial",
    "description": "This extension allows for quick access to bookmarks using keyboard shortcuts.",
    "version": "2.1",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "sd 1": {
            "suggested_key": {
                "default": "Alt+1",
                "windows": "Alt+1",
                "mac": "MacCtrl+1"
            },
            "description": "Open Speed Dial 1",
            "global": false
        },
        "sd 2": {
            "suggested_key": {
                "default": "Alt+2",
                "windows": "Alt+2",
                "mac": "MacCtrl+2"
            },
            "description": "Open Speed Dial 2",
            "global": false
        },
        "sd 3": {
            "suggested_key": {
                "default": "Alt+3",
                "windows": "Alt+3",
                "mac": "MacCtrl+3"
            },
            "description": "Open Speed Dial 3",
            "global": false
        },
        "sd 4": {
            "suggested_key": {
                "default": "Alt+4",
                "windows": "Alt+4",
                "mac": "MacCtrl+4"
            },
            "description": "Open Speed Dial 4",
            "global": false
        },
        "sd 5": {
            "description": "Open Speed Dial 5",
            "global": false
        },
        "sd 6": {
            "description": "Open Speed Dial 6",
            "global": false
        },
        "sd 7": {
            "description": "Open Speed Dial 7",
            "global": false
        },
        "sd 8": {
            "description": "Open Speed Dial 8",
            "global": false
        },
        "sd 9": {
            "description": "Open Speed Dial 9",
            "global": false
        },
        "sd 0": {
            "description": "Open Speed Dial 0",
            "global": false
        }
    },
    "permissions": [
        "bookmarks",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}