tabbbs

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

Vad är tabbbs?

tabbbs är en Chrome-tillägg utvecklad av Jonas Brinkhoff, och dess huvudfunktion är "tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner tabbbs-förlängningens CRX-fil

Ladda ner tabbbs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn tabbbs tabbbs
ID gclpgjhgdjmaolopikgndkepbkcangcg
Officiell webbadress https://chrome.google.com/webstore/detail/tabbbs/gclpgjhgdjmaolopikgndkepbkcangcg
Beskrivning tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…
Filstorlek 15.38 KB
Antal Installationer 93
Aktuell Version 0.1.2
Senast Uppdaterad 2017-06-22
Publiceringsdatum 2017-06-22
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Jonas Brinkhoff
Betalningssätt free
Tilläggswebbplats http://jub111.github.io/tabbbs/
Hjälpsida URL http://jub111.github.io/tabbbs/
Stödda Språk 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
    }
}