py3redirect

Automatically redirect to a specific Python 3 version's documentation

Что такое py3redirect?

py3redirect - это расширение Chrome, разработанное Mateusz "m4tx" Maćkowski, и его основная функция - "Automatically redirect to a specific Python 3 version's documentation".

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

screenshot
screenshot

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

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

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

                        Google search results very often have links to Python 2 docs page. However, if you are programming in Python 3, switching to version 3 docs constantly may be pretty annoying. Same thing if you're not using the latest version of Python 3 and want to always see a specific version. This extension does that for you.

This extension is open-source software (under MIT License) and its source code is available at https://github.com/m4tx/py3redirect                    

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

Название py3redirect py3redirect
ID codfjigcljdnlklcaopdciclmmdandig
Официальный URL https://chromewebstore.google.com/detail/py3redirect/codfjigcljdnlklcaopdciclmmdandig
Описание Automatically redirect to a specific Python 3 version's documentation
Размер файла 74.53 KB
Количество установок 1,402
Текущая Версия 1.4.0
Последнее Обновление 2021-05-10
Дата публикации 2020-05-10
Рейтинг 4.85/5 Всего 13 оценок
Разработчик Mateusz "m4tx" Maćkowski
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/m4tx/py3redirect
URL страницы помощи https://github.com/m4tx/py3redirect/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "py3redirect",
    "description": "Automatically redirect to a specific Python 3 version's documentation",
    "author": "Mateusz \"m4tx\" Ma\u0107kowski",
    "version": "1.4.0",
    "icons": {
        "64": "icon.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Python 3 docs page",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "browser-wrapper.js",
            "special-cases.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.python.org\/*"
            ],
            "js": [
                "browser-wrapper.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/docs.python.org\/*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ]
}