tabbbs

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

tabbbs란 무엇입니까?

tabbbs은(는) Jonas Brinkhoff에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

tabbbs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 tabbbs tabbbs
ID gclpgjhgdjmaolopikgndkepbkcangcg
공식 URL https://chrome.google.com/webstore/detail/tabbbs/gclpgjhgdjmaolopikgndkepbkcangcg
설명 tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…
파일 크기 15.38 KB
설치 횟수 93
현재 버전 0.1.2
최근 업데이트 2017-06-22
출시 날짜 2017-06-22
평점 3.67/5 총 3 개의 평점
개발자 Jonas Brinkhoff
결제 유형 free
확장 프로그램 웹 사이트 http://jub111.github.io/tabbbs/
도움말 페이지 URL http://jub111.github.io/tabbbs/
지원되는 언어 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
    }
}