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文件

下载tabbbs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}