Quick Launch Toolbar

This extension launches links from a toolbar in a new tab.

Apa itu Quick Launch Toolbar?

Quick Launch Toolbar adalah ekstensi Chrome yang dikembangkan oleh onowrouzidev, dan fitur utamanya adalah "This extension launches links from a toolbar in a new tab.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Quick Launch Toolbar

Unduh file ekstensi Quick Launch Toolbar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Quick Launch Toolbar Quick Launch Toolbar
ID lakamljdifimmlphbhhhbdlonfemfpjf
URL Resmi https://chromewebstore.google.com/detail/quick-launch-toolbar/lakamljdifimmlphbhhhbdlonfemfpjf
Deskripsi This extension launches links from a toolbar in a new tab.
Ukuran File 74.48 KB
Jumlah Instalasi 306
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2016-07-25
Tanggal Publikasi 2016-07-25
Pengembang onowrouzidev
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/"
    ]
}