Postgres Docs Redirect

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

Hvad er Postgres Docs Redirect?

Postgres Docs Redirect er en Chrome-udvidelse udviklet af tommaso.amici, og dens hovedfunktion er "Automatically redirects to current postgreSQL documentation when a docs page is requested".

Udvidelsesskærmbilleder

screenshot

Download Postgres Docs Redirect-udvidelses-CRX-fil

Download Postgres Docs Redirect-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
Officiel URL https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
Beskrivelse Automatically redirects to current postgreSQL documentation when a docs page is requested
Filstørrelse 23.15 KB
Antal Installationer 105
Nuværende Version 1.2.1
Senest Opdateret 2020-05-10
Udgivelsesdato 2020-05-10
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler tommaso.amici
Betalingsmetode free
Udvidelseswebsted https://github.com/TommasoAmici/postgres-docs-redirect
Understøttede Sprog 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"
        }
    }
}