Super Focus Tabs

Quickly find out tab/page. Reduce much more time while working with multiple tabs/pages.

Was ist Super Focus Tabs?

Super Focus Tabs ist eine Chrome-Erweiterung, die von nghiai3e entwickelt wurde, und ihr Hauptmerkmal ist "Quickly find out tab/page. Reduce much more time while working with multiple tabs/pages.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Super Focus Tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Super Focus Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        + Quickly find out tabs.
+ Quickly closing current tab by pressing double esc
+ Quickly find the page in your bookmark/history.
+ Quickly save the page by using shortcut key.
+ Quickly go back to previous active tabs by shortcut key.
+ Quickly go to latest created tab.
+ Support auto close unused tabs.
+ Support real time update.
+ Support page screenshots.
+ Support list view, thumbnail view and tree view, preview.  
+ Support tabs, bookmarks, history, saved pages.
+ Support sorting, filtering, grouping, etc. 
+ Support many functions such as saving and closing all tabs, merging windows, closing the duplicated pages, etc.
+ Many options for you to customize. 

Reduce much more time while working with chrome.
Let try and experience.                    

Grundlegende Informationen zur Erweiterung

Name Super Focus Tabs Super Focus Tabs
ID blecebkjfbkpannnmajllilknpccheak
Offizielle URL https://chromewebstore.google.com/detail/super-focus-tabs/blecebkjfbkpannnmajllilknpccheak
Beschreibung Quickly find out tab/page. Reduce much more time while working with multiple tabs/pages.
Dateigröße 388 KB
Installationsanzahl 1,554
Aktuelle Version 2.0.1
Letztes Update 2023-06-09
Veröffentlichungsdatum 2016-12-17
Bewertung 4.00/5 Insgesamt 36 Bewertungen
Entwickler nghiai3e
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Super Focus Tabs",
    "version": "2.0.1",
    "manifest_version": 3,
    "description": "Quickly find out tab\/page. Reduce much more time while working with multiple tabs\/pages.",
    "short_name": "SFocus",
    "icons": {
        "16": "sfocus16.png",
        "24": "sfocus24.png",
        "48": "sfocus48.png",
        "128": "sfocus128.png"
    },
    "background": {
        "service_worker": "scripts\/service_worker.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms",
        "contextMenus",
        "history",
        "bookmarks",
        "unlimitedStorage",
        "favicon",
        "system.display"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/images\/*",
                "_favicon\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": [
                "*"
            ]
        }
    ],
    "action": {
        "default_title": "Quick view tabs"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/style.min.css",
                "css\/tree.css",
                "css\/inlineDialog.css"
            ],
            "js": [
                "scripts\/mySuperFocus.min.js",
                "scripts\/storage.min.js",
                "scripts\/constants.min.js",
                "scripts\/hotKeys.min.js",
                "scripts\/common.min.js",
                "scripts\/inlineDialog.min.js",
                "scripts\/table.min.js",
                "scripts\/tree.min.js",
                "scripts\/page.min.js",
                "scripts\/tabs.min.js",
                "scripts\/swaps.min.js",
                "scripts\/bookmark.min.js",
                "scripts\/history.min.js",
                "scripts\/Interface.min.js",
                "scripts\/intercept_session.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "save-page": {
            "suggested_key": {
                "default": "Ctrl + Shift + S",
                "mac": "Command + Shift + S"
            },
            "global": false,
            "description": "save this page"
        },
        "merge-tabs": {
            "suggested_key": {
                "default": "Alt + Shift + M",
                "mac": "Alt + Shift + M"
            },
            "global": false,
            "description": "Merge all windows"
        },
        "backward-tabs": {
            "suggested_key": {
                "default": "Ctrl + Shift + Z",
                "mac": "Ctrl + Shift + Z"
            },
            "global": false,
            "description": "Go to previous ative tabs"
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl + Shift + F",
                "windows": "Ctrl + Shift + F",
                "mac": "Ctrl + Shift + F",
                "linux": "Ctrl + Shift + F"
            },
            "global": false,
            "description": "Open Sfocus"
        }
    },
    "options_page": "options.html"
}