Simple Outliner / 智能网页大纲

Simple Outliner / 自动生成网页大纲、目录,Support Inoreader and Feedly。

Qu'est-ce que Simple Outliner / 智能网页大纲 ?

Simple Outliner / 智能网页大纲 est une extension Chrome développée par lcomplete, et sa fonction principale est "Simple Outliner / 自动生成网页大纲、目录,Support Inoreader and Feedly。".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple Outliner / 智能网页大纲

Téléchargez les fichiers d'extension Simple Outliner / 智能网页大纲 au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Displays a table of contents for every web page, making it easier to read/navigate long articles, documentations and online books.

## Features:

- 智能生成网页大纲,支持 Inoreader 和 Feedly。

- Accurate article/headings detection
- Clean user interface
- Highlight current heading
- Click to jump to heading
- Panel can be dragged to preferred position
- Support auto load option
- ✨ Support Inoreader and Feedly, it can track the article change, it's all automatic.

## Usage:

- Click browser button(or: Ctrl/Command+Shift+E) to toggle for current site
- You can set the auto load option without click the extension icon.

## Supported sites:

Any article page that uses HTML heading tags (H1, H2, H3...) properly, examples:

- Wikipedia.org
- Github.com
- npmjs.com
- inoreader.com
- feedly.com

(...and much more)

Local html files (in your hard drive) are also supported, you just need to enable it in extension settings.

## You can buy a coffee ❤ to the original maker.

https://www.buymeacoffee.com/fallenmax

Original ♥ by FallenMax
Modified ♥ by lcomplete 

https://twitter.com/lcomplete_wild                    

Informations de Base sur l'Extension

Nom Simple Outliner / 智能网页大纲 Simple Outliner / 智能网页大纲
ID ppdjhggfcaenclmimmdigbcglfoklgaf
URL Officiel https://chromewebstore.google.com/detail/simple-outliner-%E6%99%BA%E8%83%BD%E7%BD%91%E9%A1%B5%E5%A4%A7%E7%BA%B2/ppdjhggfcaenclmimmdigbcglfoklgaf
Description Simple Outliner / 自动生成网页大纲、目录,Support Inoreader and Feedly。
Taille du Fichier 77.94 KB
Nombre d'Installations 1,776
Version Actuelle 0.7.3
Dernière Mise à Jour 2022-03-28
Date de Publication 2022-03-09
Évaluation 4.80/5 Total 5 Évaluations
Développeur lcomplete
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lcomplete/smart-toc
URL de la Page d'Aide https://github.com/lcomplete/smart-toc
URL de la Page de Politique de Confidentialité https://codelc.com/privacy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Outliner \/ \u667a\u80fd\u7f51\u9875\u5927\u7eb2",
    "version": "0.7.3",
    "description": "Simple Outliner \/ \u81ea\u52a8\u751f\u6210\u7f51\u9875\u5927\u7eb2\u3001\u76ee\u5f55\uff0cSupport Inoreader and Feedly\u3002",
    "options_page": "options.html",
    "action": {
        "default_icon": "icon.png",
        "default_title": "Simple Outliner \/ \u667a\u80fd\u7f51\u9875\u5927\u7eb2"
    },
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "toc.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self';object-src 'self';script-src-elem 'self' 'unsafe-inline' https:\/\/platform.twitter.com https:\/\/syndication.twitter.com;"
    },
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            },
            "description": "Load\/unload TOC"
        },
        "prev": {
            "description": "Jump to previous heading"
        },
        "next": {
            "description": "Jump to next heading"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "author": "[email protected]"
}