py3redirect
Automatically redirect to a specific Python 3 version's documentation
O que é py3redirect?
py3redirect é uma extensão do Chrome desenvolvida por Mateusz "m4tx" Maćkowski, e sua principal característica é "Automatically redirect to a specific Python 3 version's documentation".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão py3redirect
Baixe arquivos de extensão py3redirect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | py3redirect |
ID | codfjigcljdnlklcaopdciclmmdandig |
URL Oficial | https://chromewebstore.google.com/detail/py3redirect/codfjigcljdnlklcaopdciclmmdandig |
Descrição | Automatically redirect to a specific Python 3 version's documentation |
Tamanho do Arquivo | 74.53 KB |
Contagem de Instalações | 1,402 |
Versão Atual | 1.4.0 |
Última Atualização | 2021-05-10 |
Data de Publicação | 2020-05-10 |
Classificação | 4.85/5 Total de 13 Avaliações |
Desenvolvedor | Mateusz "m4tx" Maćkowski |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/m4tx/py3redirect |
URL da Página de Ajuda | https://github.com/m4tx/py3redirect/issues |
Idiomas Suportados | 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" ] } |