Structured Start Tab

Show a structured page when a new tab is opened.

什么是Structured Start Tab?

Structured Start Tab是由Dr Rich Boakes开发的Chrome扩展程序,该扩展的主要功能是“Show a structured page when a new tab is opened.”。

扩展截图

screenshot
screenshot
screenshot

下载Structured Start Tab扩展crx文件

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

扩展使用说明

                        Structured Start Tab replaces the default new-tab with a page of links that you build and arrange how you want.  Use panels to group links together, adding colour to make finding what you want fast and easy.  Recent browser bookmarks are automatically included in a sidebar (and can be dragged onto panels for organisation).

If you use a calendar service that published ical files, you can subscribe to this feed to include a mini calendar in your home page too (and everything is synchronized in the background so there's never any waiting).                    

扩展基本信息

名称 Structured Start Tab Structured Start Tab
ID pldheaomfiegamcicehmijhaijcocidb
官方URL https://chromewebstore.google.com/detail/structured-start-tab/pldheaomfiegamcicehmijhaijcocidb
简介 Show a structured page when a new tab is opened.
文件大小 215 KB
安装次数 34
当前版本 1.13.1
更新时间 2023-05-02
上架时间 2020-07-09
评分 5.00/5 共5次评分
开发者 Dr Rich Boakes
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.facebook.com/structuredstarttab/
支持的语言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.13.1",
    "version_name": "1.13.1",
    "name": "Structured Start Tab",
    "description": "Show a structured page when a new tab is opened.",
    "author": "Rich Boakes",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "favicon",
        "contextMenus",
        "topSites",
        "alarms"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "src\/js\/background.js",
        "type": "module"
    },
    "icons": {
        "16": "src\/style\/i\/16.png",
        "48": "src\/style\/i\/48.png",
        "96": "src\/style\/i\/96.png",
        "128": "src\/style\/i\/128.png",
        "580": "src\/style\/i\/580.png"
    },
    "action": {
        "default_icon": "src\/style\/i\/48.png"
    },
    "chrome_url_overrides": {
        "newtab": "src\/index.html"
    },
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "data\/*",
                "chrome:\/\/settings\/strings.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "toggle-sidebar": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "MacCtrl+Shift+B"
            },
            "description": "Toggle Sidebar"
        },
        "toggle-heatmap": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "MacCtrl+Shift+I"
            },
            "description": "Toggle HeatMap"
        },
        "toggle-presentation": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            },
            "description": "Toggle presentation mode"
        }
    }
}