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
Eメール [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"
    ]
}