Outline

Generate outline for website

什么是Outline?

Outline是由songjp开发的Chrome扩展程序,该扩展的主要功能是“Generate outline for website”。

扩展截图

screenshot
screenshot
screenshot

下载Outline扩展crx文件

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

扩展使用说明

                        Purpose: This Chrome extension is designed to generate a outline navigation for websites that do not come with one.

Why you should install it: There are currently many websites on the web without a outline navigation, such as https://developer.mozilla.org/, https://github.com/, https://zhuanlan.zhihu.com, etc. Without a outline it is not easy to read the articles on the website and there is no way to quickly to locate a section of an article. Therefore, the Outline plugin is designed to solve this problem. It generates a outline for a given website and supports jumping to the corresponding section of the article with a single click. The extension also supports the configuration of the URL of the website where it is active, which means that the extension can be used on any website.                    

扩展基本信息

名称 Outline Outline
ID hdnnkahjgbbebkfcmefalfmcfclakcdh
官方URL https://chromewebstore.google.com/detail/outline/hdnnkahjgbbebkfcmefalfmcfclakcdh
简介 Generate outline for website
文件大小 27.29 KB
安装次数 202
当前版本 2.2.0
更新时间 2021-12-30
上架时间 2021-12-20
开发者 songjp
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/yes1am/Outline
支持的语言 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Outline",
    "version": "2.2.0",
    "description": "Generate outline for website",
    "homepage_url": "https:\/\/github.com\/yes1am\/Outline",
    "author": "[email protected]",
    "icons": {
        "16": ".\/img\/icon.png",
        "48": ".\/img\/icon.png",
        "128": ".\/img\/icon.png"
    },
    "browser_action": {
        "default_icon": ".\/img\/icon.png",
        "default_title": "Outline",
        "default_popup": ".\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content-script.js",
                ".\/js\/common.js"
            ],
            "css": [
                ".\/css\/content-script.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": ".\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ]
}