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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}