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
官方網址 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"
    ]
}