tabbbs

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

tabbbs là gì?

tabbbs là một tiện ích mở rộng Chrome được phát triển bởi Jonas Brinkhoff, và tính năng chính của nó là "tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng tabbbs

Tải xuống các tệp mở rộng tabbbs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên tabbbs tabbbs
ID gclpgjhgdjmaolopikgndkepbkcangcg
URL Chính Thức https://chrome.google.com/webstore/detail/tabbbs/gclpgjhgdjmaolopikgndkepbkcangcg
Mô tả tabbbs is a tiny chrome extension that makes browsing on dribbble more comfortable. Infinite scrolling can cause hiccups while…
Kích Thước Tệp 15.38 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2017-06-22
Ngày Phát Hành 2017-06-22
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Jonas Brinkhoff
Loại Thanh Toán free
Trang Web Mở Rộng http://jub111.github.io/tabbbs/
URL Trang Trợ Giúp http://jub111.github.io/tabbbs/
Ngôn Ngữ Được Hỗ Trợ 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
    }
}