Quick Launch Toolbar
This extension launches links from a toolbar in a new tab.
Quick Launch Toolbarとは何ですか?
Quick Launch Toolbarはonowrouzidevによって開発されたChromeの拡張機能で、その主な機能は「This extension launches links from a toolbar in a new tab.」です。
拡張機能のスクリーンショット
Quick Launch Toolbar拡張機能のCRXファイルをダウンロード
Quick Launch Toolbar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        This is a simple but highly customizable quick launch toolbar that stays fixed to the top of web pages to launch new tabs to sites of your choice. Depending on feedback, I may add more customizability and features.
Currently, there are some conflicts with some websites. This is mostly related to a site's dynamic CSS or security settings conflicting with non-secure image url's.                     拡張機能の基本情報
| 名前 |   |  
| ID | lakamljdifimmlphbhhhbdlonfemfpjf | 
| 公式URL | https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf | 
| 説明 | This extension launches links from a toolbar in a new tab. | 
| ファイルサイズ | 74.48 KB | 
| インストール数 | 306 | 
| 現在のバージョン | 0.1.1 | 
| 最終更新日 | 2016-07-25 | 
| 公開日 | 2016-07-25 | 
| 開発者 | onowrouzidev | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 対応言語 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Launch Toolbar",
    "description": "This extension launches links from a toolbar in a new tab.",
    "version": "0.1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery-2.2.4.min.js",
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}  |  |