Outline

Generate outline for website

Outline क्या है?

Outline songjp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate outline for website"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Outline एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}