Custom Shortcut Button

Allows you to set a custom shortcut button next to your address bar.

什麼是Custom Shortcut Button?

Custom Shortcut Button是由xylophono開發的Chrome擴展程式,該擴展的主要功能是“Allows you to set a custom shortcut button next to your address bar.”。

擴展截圖

screenshot
screenshot

下載Custom Shortcut Button擴展crx文件

下載Custom Shortcut Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Custom Shortcut Button puts a new button next to your address bar, which you can then use to easily and repeatedly open a custom URL in a new tab. To set the URL please right click on the icon and select "Options".

Changelog:

V1.0 - Jan 31st 2017
- Initial release.

For any issues please contact [email protected] :)                    

擴展基本資訊

名稱 Custom Shortcut Button Custom Shortcut Button
ID kcmejemnmnheajipjgilcefofjchdafg
官方網址 https://chromewebstore.google.com/detail/custom-shortcut-button/kcmejemnmnheajipjgilcefofjchdafg
簡介 Allows you to set a custom shortcut button next to your address bar.
檔案大小 48.96 KB
安裝次數 713
目前版本 1.0
更新時間 2017-01-31
上架時間 2017-01-31
評分 5.00/5 共 5 次評分
開發者 xylophono
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Shortcut Button",
    "short_name": "Custom Shortcut",
    "description": "Allows you to set a custom shortcut button next to your address bar.",
    "version": "1.0",
    "version_name": "1.0",
    "minimum_chrome_version": "38",
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png",
        "512": "assets\/icon.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_title": ""
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "index.html"
    }
}