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은(는) michristofides에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects PostgreSQL docs links to the current version (except when coming from the docs, or to deprecated features)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

pg_docs_bot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}