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
官方網址 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"
    ]
}