py3redirect

Automatically redirect to a specific Python 3 version's documentation

py3redirectとは何ですか?

py3redirectはMateusz "m4tx" Maćkowskiによって開発されたChromeの拡張機能で、その主な機能は「Automatically redirect to a specific Python 3 version's documentation」です。

拡張機能のスクリーンショット

screenshot
screenshot

py3redirect拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}