Tab Player

An astonishing way of managing tabs.

Tab Playerとは何ですか?

Tab Playerはhttps://sipt.topによって開発されたChromeの拡張機能で、その主な機能は「An astonishing way of managing tabs.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Tab Player拡張機能のCRXファイルをダウンロード

Tab Player拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Tab Player is a Chrome extension for convenient tab management. The functions are: Group and Clean.
1. Group
Users can easily create, search, and close groups. They can focus on a specific task within a group, allowing them to stay organized and efficient.
Users can summon a pop-up window on any page by using the default shortcut key cmd + shift + O.
* Pressing "Enter" selects a group. 
* "Cmd + Enter" closes a group. 
* When searching for a keyword that doesn't match any existing groups, pressing "Enter" creates a new group. (If you want to specify a color when creating a group, you can use "[[" to separate the color keyword. Currently supported colors include "grey", "blue", "red", "yellow", "green", "pink", "purple", "cyan", and "orange". For example, "demo[[red" creates a group named "demo" with the color red. )
* In the omnibox, you can also use the keyword "tp" to trigger the group creation. 
* When focused on a group, any new tabs created will automatically belong to that group.
2. Clean
* It allows you to search and filter tabs by keywords in titles or URLs, and easily close or pin tabs.
* After retrieval is complete, press Enter to call up the operation box, which supports closing and pinning. You can also click the button on the right side of the input box.                    

拡張機能の基本情報

名前 Tab Player Tab Player
ID jnmgfgjcefakjoeoinpncbilkdnikbgc
公式URL https://chromewebstore.google.com/detail/tab-player/jnmgfgjcefakjoeoinpncbilkdnikbgc
説明 An astonishing way of managing tabs.
ファイルサイズ 393 KB
インストール数 83
現在のバージョン 1.1.0
最終更新日 2023-08-16
公開日 2023-07-30
評価 5.00/5 合計 1 レビュー
開発者 https://sipt.top
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sipt/tab-player
ヘルプページのURL https://github.com/sipt/tab-player/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Player",
    "version": "1.1.0",
    "description": "An astonishing way of managing tabs.",
    "omnibox": {
        "keyword": "tp"
    },
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-32.png"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle16920371258.chunk.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-32.png",
                "src\/pages\/options\/*",
                "src\/pages\/panel\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "tabGroups",
        "storage",
        "activeTab"
    ]
}