tabbbs

tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…

Co je tabbbs?

tabbbs je rozšíření Chrome vyvinuté Jonas Brinkhoff, a jeho hlavní funkcí je „tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření tabbbs

Stáhněte si soubory rozšíření tabbbs ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable.

Infinite scrolling can cause hiccups while navigating back and forth in your browser. By default, user profiles and links in shot descriptions are opened in the same tab - when returning to your feed, you often don't end up at the previous scroll position.

With tabbbs you can choose to open all user profiles and links in shot descriptions in a new tab by default, so that you always get back to where you took off.                    

Základní Informace o Rozšíření

Název tabbbs tabbbs
ID gclpgjhgdjmaolopikgndkepbkcangcg
Oficiální URL https://chrome.google.com/webstore/detail/tabbbs/gclpgjhgdjmaolopikgndkepbkcangcg
Popis tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…
Velikost souboru 15.38 KB
Počet instalací 93
Aktuální Verze 0.1.2
Poslední Aktualizace 2017-06-22
Datum Vydání 2017-06-22
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář Jonas Brinkhoff
Typ Platby free
Webové stránky Rozšíření http://jub111.github.io/tabbbs/
URL Stránky Nápovědy http://jub111.github.io/tabbbs/
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tabbbs",
    "version": "0.1.2",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/logo-16x16.png",
        "48": "assets\/logo-48x48.png",
        "128": "assets\/logo-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.dribbble.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "html\/options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}