Postgres Docs Redirect

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

O que é Postgres Docs Redirect?

Postgres Docs Redirect é uma extensão do Chrome desenvolvida por tommaso.amici, e sua principal característica é "Automatically redirects to current postgreSQL documentation when a docs page is requested".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Postgres Docs Redirect

Baixe arquivos de extensão Postgres Docs Redirect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
URL Oficial https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
Descrição Automatically redirects to current postgreSQL documentation when a docs page is requested
Tamanho do Arquivo 23.15 KB
Contagem de Instalações 105
Versão Atual 1.2.1
Última Atualização 2020-05-10
Data de Publicação 2020-05-10
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor tommaso.amici
Tipo de Pagamento free
Site da Extensão https://github.com/TommasoAmici/postgres-docs-redirect
Idiomas Suportados 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"
        }
    }
}