py3redirect

Automatically redirect to a specific Python 3 version's documentation

Apa itu py3redirect?

py3redirect adalah ekstensi Chrome yang dikembangkan oleh Mateusz "m4tx" Maćkowski, dan fitur utamanya adalah "Automatically redirect to a specific Python 3 version's documentation".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi py3redirect

Unduh file ekstensi py3redirect dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama py3redirect py3redirect
ID codfjigcljdnlklcaopdciclmmdandig
URL Resmi https://chromewebstore.google.com/detail/py3redirect/codfjigcljdnlklcaopdciclmmdandig
Deskripsi Automatically redirect to a specific Python 3 version's documentation
Ukuran File 74.53 KB
Jumlah Instalasi 1,402
Versi Saat Ini 1.4.0
Terakhir Diperbarui 2021-05-10
Tanggal Publikasi 2020-05-10
Penilaian 4.85/5 Total 13 Penilaian
Pengembang Mateusz "m4tx" Maćkowski
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/m4tx/py3redirect
URL Halaman Bantuan https://github.com/m4tx/py3redirect/issues
Bahasa yang Didukung 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"
    ]
}