py3redirect

Automatically redirect to a specific Python 3 version's documentation

Was ist py3redirect?

py3redirect ist eine Chrome-Erweiterung, die von Mateusz "m4tx" Maćkowski entwickelt wurde, und ihr Hauptmerkmal ist "Automatically redirect to a specific Python 3 version's documentation".

Erweiterungsscreenshots

screenshot
screenshot

py3redirect-Erweiterungs-CRX-Datei herunterladen

Laden Sie py3redirect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name py3redirect py3redirect
ID codfjigcljdnlklcaopdciclmmdandig
Offizielle URL https://chromewebstore.google.com/detail/py3redirect/codfjigcljdnlklcaopdciclmmdandig
Beschreibung Automatically redirect to a specific Python 3 version's documentation
Dateigröße 74.53 KB
Installationsanzahl 1,402
Aktuelle Version 1.4.0
Letztes Update 2021-05-10
Veröffentlichungsdatum 2020-05-10
Bewertung 4.85/5 Insgesamt 13 Bewertungen
Entwickler Mateusz "m4tx" Maćkowski
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/m4tx/py3redirect
Hilfeseite URL https://github.com/m4tx/py3redirect/issues
Unterstützte Sprachen 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"
    ]
}