Postgres Docs Redirect

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

What is Postgres Docs Redirect?

Postgres Docs Redirect is a Chrome extension developed by tommaso.amici, and its main feature is "Automatically redirects to current postgreSQL documentation when a docs page is requested".

Extension Screenshots

screenshot

Download Postgres Docs Redirect Extension CRX File

Download Postgres Docs Redirect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
Official URL https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
Description Automatically redirects to current postgreSQL documentation when a docs page is requested
File Size 23.15 KB
Installation Count 105
Current Version 1.2.1
Last Updated 2020-05-10
Publish Date 2020-05-10
Rating 5.00/5 Total 2 Ratings
Developer tommaso.amici
Payment Type free
Extension Website https://github.com/TommasoAmici/postgres-docs-redirect
Supported Languages 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"
        }
    }
}