indices

Creates an index for articles on the web.

Что такое indices?

indices - это расширение Chrome, разработанное Martian Peaks, и его основная функция - "Creates an index for articles on the web.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения indices

Скачайте файлы расширений indices в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Indices creates a Table of Contents sidebar for Medium articles, and enables you to skip around.

It's for you if you're an avid Medium reader.

Contribute, if that's your thing: https://github.com/lunaroyster/indices

Privacy Policy: https://bit.ly/2JgC9Y2                    

Основная информация о расширении

Название indices indices
ID ilicifhajkigmalgipoidbmgbjgmoeck
Официальный URL https://chromewebstore.google.com/detail/indices/ilicifhajkigmalgipoidbmgbjgmoeck
Описание Creates an index for articles on the web.
Размер файла 38.88 KB
Количество установок 34
Текущая Версия 0.4.0
Последнее Обновление 2018-04-25
Дата публикации 2018-04-25
Рейтинг 3.50/5 Всего 2 оценок
Разработчик Martian Peaks
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "indices",
    "version": "0.4.0",
    "description": "Creates an index for articles on the web.",
    "icons": {
        "128": "images\/indices.png"
    },
    "background": {
        "page": "background\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "importedScripts\/jquery.min.js",
                "contentScripts\/contentScript.js"
            ],
            "css": [
                "contentScripts\/contentScript.css"
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "content_security_policy": "script-src https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com 'self'; object-src 'self'",
    "manifest_version": 2
}