Postgres Docs Redirect

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

¿Qué es Postgres Docs Redirect?

Postgres Docs Redirect es una extensión de Chrome desarrollada por tommaso.amici, y su función principal es "Automatically redirects to current postgreSQL documentation when a docs page is requested".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Postgres Docs Redirect

Descarga archivos de extensión Postgres Docs Redirect en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
URL Oficial https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
Descripción Automatically redirects to current postgreSQL documentation when a docs page is requested
Tamaño del Archivo 23.15 KB
Cantidad de Instalaciones 105
Versión Actual 1.2.1
Última Actualización 2020-05-10
Fecha de Publicación 2020-05-10
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador tommaso.amici
Tipo de Pago free
Sitio Web de la Extensión https://github.com/TommasoAmici/postgres-docs-redirect
Idiomas Soportados 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"
        }
    }
}