Postgres Docs Redirect

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

Co to jest Postgres Docs Redirect?

Postgres Docs Redirect to rozszerzenie Chrome opracowane przez tommaso.amici, a jego główną funkcją jest „Automatically redirects to current postgreSQL documentation when a docs page is requested”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Postgres Docs Redirect

Pobierz pliki rozszerzeń Postgres Docs Redirect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
Oficjalny URL https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
Opis Automatically redirects to current postgreSQL documentation when a docs page is requested
Rozmiar pliku 23.15 KB
Liczba instalacji 105
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2020-05-10
Data Publikacji 2020-05-10
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper tommaso.amici
Typ Płatności free
Strona Rozszerzenia https://github.com/TommasoAmici/postgres-docs-redirect
Obsługiwane Języki 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"
        }
    }
}