py3redirect

Automatically redirect to a specific Python 3 version's documentation

py3redirect क्या है?

py3redirect Mateusz "m4tx" Maćkowski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically redirect to a specific Python 3 version's documentation"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में py3redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}