Turbo Outliner

Most accurate web article table of contents generator!

Co to jest Turbo Outliner?

Turbo Outliner to rozszerzenie Chrome opracowane przez ShuoWu, a jego główną funkcją jest „Most accurate web article table of contents generator!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Turbo Outliner

Pobierz pliki rozszerzeń Turbo Outliner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Turbo Outliner is the most accurate web article table of contents generator!

Turbo Outliner unlike other table of contents generators, it employ advanced article recognize algorithm to prevent noise from table of contents. Generated outlines are accurate, clean and informative!                    

Podstawowe informacje o rozszerzeniu

Nazwa Turbo Outliner Turbo Outliner
ID iodgmdnioenechbmenajalhpadghigfa
Oficjalny URL https://chromewebstore.google.com/detail/turbo-outliner/iodgmdnioenechbmenajalhpadghigfa
Opis Most accurate web article table of contents generator!
Rozmiar pliku 16.94 KB
Liczba instalacji 773
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2017-02-22
Data Publikacji 2017-02-21
Ocena 3.56/5 Łącznie 16 Oceny
Deweloper ShuoWu
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Turbo Outliner",
    "version": "0.0.5",
    "description": "Most accurate web article table of contents generator!",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "contextMenus",
        ""
    ],
    "browser_action": {
        "default_icon": "icons\/icon-32.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "MacCtrl+Shift+O"
            }
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "app.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}