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
官方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"
        }
    }
}