py3redirect
Automatically redirect to a specific Python 3 version's documentation
py3redirectคืออะไร?
py3redirect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mateusz "m4tx" Maćkowski และคุณลักษณะหลักของมันคือ "Automatically redirect to a specific Python 3 version's documentation"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย py3redirect
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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" ] } |