Postgres Docs Redirect

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

什麼是Postgres Docs Redirect?

Postgres Docs Redirect是由tommaso.amici開發的Chrome擴展程式,該擴展的主要功能是“Automatically redirects to current postgreSQL documentation when a docs page is requested”。

擴展截圖

screenshot

下載Postgres Docs Redirect擴展crx文件

下載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
官方網址 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"
        }
    }
}