Flowbar - Chrome Tab Manager

Multi-functional browser organizer & note taking tool.

什么是Flowbar - Chrome Tab Manager?

Flowbar - Chrome Tab Manager是由https://flowbar.co开发的Chrome扩展程序,该扩展的主要功能是“Multi-functional browser organizer & note taking tool.”。

扩展截图

screenshot
screenshot

下载Flowbar - Chrome Tab Manager扩展crx文件

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

扩展使用说明

                        - Save all open tabs instantly to remove clutter and free up memory.
- Create multiple groups to save most important links for work, hobbies, and any other links that you open every day.
- Save individual tabs into existing groups or create a new one.
- Move your tabs between groups to re-organize.
- Sync all your tabs between different computers by logging in with your Google account.
- Search saved tabs to quickly find what you're looking for.
- Import your Tabs from OneTab extension easily.
- Autosave open tabs

https://flowbar.co                    

扩展基本信息

名称 Flowbar - Chrome Tab Manager Flowbar - Chrome Tab Manager
ID chidlojljmmcgpjapdbkedbbilnjoddg
官方URL https://chromewebstore.google.com/detail/flowbar-chrome-tab-manage/chidlojljmmcgpjapdbkedbbilnjoddg
简介 Multi-functional browser organizer & note taking tool.
文件大小 27.94 KB
安装次数 3,328
当前版本 2023.5.8
更新时间 2023-05-16
上架时间 2020-05-14
评分 3.82/5 共108次评分
开发者 https://flowbar.co
电子邮箱 [email protected]
付费类型 free
扩展官网 https://flowbar.co
帮助页面URL https://flowbar.co
隐私政策页面URL http://flowbar.co/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flowbar - Chrome Tab Manager",
    "description": "Multi-functional browser organizer & note taking tool.",
    "version": "2023.5.8",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        }
    },
    "commands": {
        "save-all": {
            "suggested_key": {
                "default": "Alt+V",
                "mac": "Alt+V",
                "chromeos": "Alt+V",
                "linux": "Alt+V"
            },
            "description": "Save all tabs to general"
        },
        "open-dashboard": {
            "suggested_key": {
                "default": "Alt+B",
                "mac": "Alt+B",
                "chromeos": "Alt+B",
                "linux": "Alt+B"
            },
            "description": "Open Dashboard"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:4100\/*",
            "https:\/\/dev-v2app.flowbar.co\/*",
            "https:\/\/app-v2.flowbar.co\/*"
        ]
    }
}