Tabulous

Filter, activate, select or close one or multiple tabs across windows --- all with your keyboard.

Tabulous란 무엇입니까?

Tabulous은(는) Tabulous에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter, activate, select or close one or multiple tabs across windows --- all with your keyboard."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tabulous 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Do you habitually end up with tons of open tabs? Only see fav icons instead of tab titles?
Have I got a thing for you!

Just hit Ctrl+Space and Tabulous lists all of your open tabs, across all open windows.
Start typing to filter the list and hit Enter to activate the selected tab.

Tabulous can also mark multiple tabs with Ctrl+S, or all tabs with Ctrl+A.
Ctrl+D will close one or more tabs.

By the way—Tabulous is open source, and is being developed in the open.
Check out https://github.com/brumm/tabulous.

Default shortcuts:
Ctrl+Space => Open extension
Ctrl+S => Select tab
Ctrl+A => Select all tabs
Ctrl+D => Close tab(s)                    

확장 프로그램 기본 정보

이름 Tabulous Tabulous
ID nlgnadihdmdgooaegcmonjebalkfldfj
공식 URL https://chromewebstore.google.com/detail/tabulous/nlgnadihdmdgooaegcmonjebalkfldfj
설명 Filter, activate, select or close one or multiple tabs across windows --- all with your keyboard.
파일 크기 327 KB
설치 횟수 33
현재 버전 0.0.14
최근 업데이트 2018-06-23
출시 날짜 2018-06-23
평점 5.00/5 총 9 개의 평점
개발자 Tabulous
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/brumm/tabulous
도움말 페이지 URL https://github.com/brumm/tabulous/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Filter, activate, select or close one or multiple tabs across windows --- all with your keyboard.",
    "version": "0.0.14",
    "name": "Tabulous",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "optional_permissions": [
        "bookmarks",
        "sessions",
        "management"
    ],
    "browser_action": {
        "default_title": "Tabulous",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon-16.png",
        "24": "icon-24.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "mac": "MacCtrl+Space",
                "windows": "Ctrl+Space",
                "chromeos": "Ctrl+Space",
                "linux": "Ctrl+Space"
            }
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/cdn.ravenjs.com; object-src 'self'"
}