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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - 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\/*"
        ]
    }
}