better-onetab

A better OneTab

¿Qué es better-onetab?

better-onetab es una extensión de Chrome desarrollada por WangJie, y su función principal es "A better OneTab".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión better-onetab

Descarga archivos de extensión better-onetab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This a better onetab extension

Storing and grouping tabs are very useful. Onetab could help you to store the tabs you opened so that to free up your resources and remove clutter. But Onetab still lacks some features such as the simple list and just store selected tabs. Since One tab it's not open source and because they update very rarely I decided to make a "Better" Onetab extension. 

★ Basic

If you used OneTab in the past, you can use Better Onetab like before. Expect store all tabs from a window, you can also just store the tabs you selected.

Better Onetab still provide the ability to store all tabs, store left or right tabs and any others. And you can also use it from the context menu.

Samely, you can also use "pin list" to keep a list will not be removed, set the title of a list or drag to change the order of tabs. Even you can set the color of a list in the new version.

★ Popup simple list

This is one of the key features I wanted One tab to have. This allows you to have the list of stored tabs at hand just with a click of the icon. You can also manage the lists of tabs as well quickly from the popup.

 * You can change the "Behavior when icon is clicked" in the options page and enable or disable "simple popup list".

★ Keyboard shortcut

You can set a keyboard shortcut for "store selected tabs" or other action so that you can store tabs very easily. It is helpful for improving efficiency.

★ Add to history

You can choose to add the tabs to browser history if you like.

★ Migrate from Onetab

It is very simple. Better Onetab support to import the data exported from Onetab so that you can try Better Onetab easily.

★ Execute from other extensions

If you are using some others extensions, such as a mouse gesture extension, you can use the following code to execute "store selected tabs" command.

chrome.runtime.sendMessage('eookhngofldnbnidjlbkeecljkfpmfpg', 'store-selected-tabs')

Expect it, you can replace 'store-selected-tabs'  with other string to call other commands:

 - store-all-tabs
 - restore-lastest-list
 - open-lists

★ Some other quality of life improvements

Better Onetab will not open pages when you open the browser, but if you want, it is a simple thing.

------------------

visit this link if you want to check codes, submit a feedback or new features request:

https://github.com/cnwangjie/better-onetab                    

Información Básica de la Extensión

Nombre better-onetab better-onetab
ID eookhngofldnbnidjlbkeecljkfpmfpg
URL Oficial https://chromewebstore.google.com/detail/better-onetab/eookhngofldnbnidjlbkeecljkfpmfpg
Descripción A better OneTab
Tamaño del Archivo 1.53 MB
Cantidad de Instalaciones 31,548
Versión Actual 1.4.7
Última Actualización 2019-08-24
Fecha de Publicación 2019-08-24
Calificación 3.42/5 Total de 180 Calificaciones
Desarrollador WangJie
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.cnwangjie.com
URL de la Página de Ayuda https://github.com/cnwangjie/better-onetab
Idiomas Soportados de,en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "version": "1.4.7",
    "default_locale": "en",
    "description": "__MSG_ext_desc__",
    "author": "WangJie ",
    "icons": {
        "16": "assets\/icons\/icon_16.png",
        "48": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "store-selected-tabs": {
            "description": "__MSG_cmd_store_selected_tabs__",
            "global": true
        },
        "store-all-tabs": {
            "description": "__MSG_cmd_store_all_tabs__",
            "global": true
        },
        "restore-lastest-list": {
            "description": "__MSG_cmd_restore_lastest_list__",
            "global": true
        },
        "open-lists": {
            "description": "__MSG_cmd_open_lists__",
            "global": true
        },
        "store-all-in-all-windows": {
            "description": "__MSG_cmd_store_all_in_all_windows__",
            "global": true
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/boss.cnwangjie.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/icons\/icon_16.png",
            "24": "assets\/icons\/icon_48.png",
            "32": "assets\/icons\/icon_128.png"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "history",
        "identity",
        "notifications"
    ],
    "homepage_url": "https:\/\/github.com\/cnwangjie\/better-onetab",
    "oauth2": {
        "client_id": "530831729511-dclgvblhv7var13mvpjochb5f295a6vc.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    },
    "offline_enabled": true,
    "options_page": "index.html#\/app\/options",
    "options_ui": {
        "page": "index.html#\/app\/options",
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com https:\/\/apis.google.com ; object-src 'self'"
}