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”。
扩展截图
下载py3redirect扩展crx文件
下载py3redirect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| 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"
]
} | |