Postgres Docs Redirect

Automatically redirects to current postgreSQL documentation when a docs page is requested

Postgres Docs Redirectคืออะไร?

Postgres Docs Redirect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tommaso.amici และคุณลักษณะหลักของมันคือ "Automatically redirects to current postgreSQL documentation when a docs page is requested"

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

screenshot

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

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

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

                        Google search results very often have links to older postgreSQL docs page, and switching to the latest version of the docs constantly may be pretty annoying. This extension does this for you.                    

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

ชื่อ Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
คำอธิบาย Automatically redirects to current postgreSQL documentation when a docs page is requested
ขนาดไฟล์ 23.15 KB
จำนวนการติดตั้ง 105
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2020-05-10
วันที่เผยแพร่ 2020-05-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา tommaso.amici
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/TommasoAmici/postgres-docs-redirect
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Postgres Docs Redirect",
    "description": "Automatically redirects to current postgreSQL documentation when a docs page is requested",
    "author": "Tommaso Amici",
    "version": "1.2.1",
    "icons": {
        "64": "icon.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Postgres docs page",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "browser-wrapper.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.postgresql.org\/docs\/*"
            ],
            "js": [
                "browser-wrapper.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/postgresql.org\/docs\/*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "60.0"
        }
    }
}