pg_docs_bot

Redirects PostgreSQL docs links to the current version (except when coming from the docs, or to deprecated features).

pg_docs_botคืออะไร?

pg_docs_bot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michristofides และคุณลักษณะหลักของมันคือ "Redirects PostgreSQL docs links to the current version (except when coming from the docs, or to deprecated features)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย pg_docs_bot

ดาวน์โหลดไฟล์ส่วนขยาย pg_docs_bot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When you search for Postgres related things, an old version of the documentation is sometimes indexed. Similarly, some answers on sites like Stack Overflow link to old versions of the documentation. 

pg_docs_bot helps you avoid the annoyance of having to click "Current" when you get there, the frustration of having read the whole page before realising it was an old version, or even not realising that it was an out of date version.

Features:
* Redirects links to the "current" version
* After redirecting, displays a notice (including a link to the page you were redirected from)
* Avoids redirecting some deprecated features (to avoid 404s)
* Doesn't redirect when coming from another page in the docs, so you can still check old versions (the main problem with generic redirectors)

Limitations:
* Only supports redirecting to "current"
* Works for the English language docs
* Works for version 7.0 links upwards
* Chrome extension works on a limited list of search engines and stack exchange sites (to avoid needing  permission)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ pg_docs_bot pg_docs_bot
ID hkbfkapgdfedgidpfbhlogecohcnaeod
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pgdocsbot/hkbfkapgdfedgidpfbhlogecohcnaeod
คำอธิบาย Redirects PostgreSQL docs links to the current version (except when coming from the docs, or to deprecated features).
ขนาดไฟล์ 8.48 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2023-08-11
วันที่เผยแพร่ 2020-05-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา michristofides
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mchristofides/pg_docs_bot/
URL หน้าช่วยเหลือ https://github.com/mchristofides/pg_docs_bot/issues/
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "pg_docs_bot",
    "version": "1.0.2",
    "description": "Redirects PostgreSQL docs links to the current version (except when coming from the docs, or to deprecated features).",
    "homepage_url": "https:\/\/github.com\/mchristofides\/pg_docs_bot",
    "manifest_version": 2,
    "icons": {
        "48": "slonik_in_glasses_48.png",
        "128": "slonik_in_glasses_128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.postgresql.org\/docs\/*",
        "https:\/\/*.google.com\/*",
        "https:\/\/*.duckduckgo.com\/*",
        "https:\/\/*.ecosia.org\/*",
        "https:\/\/*.bing.com\/*",
        "https:\/\/stackoverflow.com\/*",
        "https:\/\/dba.stackexchange.com\/*",
        "https:\/\/search.brave.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.postgresql.org\/docs\/*"
            ],
            "js": [
                "pgdocsbotnotice.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "redirectdocs.js"
        ]
    }
}