Postgres Docs Redirect

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

Τι είναι το Postgres Docs Redirect;

Το Postgres Docs Redirect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tommaso.amici, και η κύρια λειτουργία του είναι "Automatically redirects to current postgreSQL documentation when a docs page is requested".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Postgres Docs Redirect

Λήψη αρχείων επέκτασης Postgres Docs Redirect σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Postgres Docs Redirect Postgres Docs Redirect
ID ajcfpdiobeccopppdonocgddplegokbl
Επίσημο URL https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl
Περιγραφή Automatically redirects to current postgreSQL documentation when a docs page is requested
Μέγεθος Αρχείου 23.15 KB
Αριθμός Εγκαταστάσεων 105
Τρέχουσα Έκδοση 1.2.1
Τελευταία Ενημέρωση 2020-05-10
Ημερομηνία Δημοσίευσης 2020-05-10
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής tommaso.amici
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/TommasoAmici/postgres-docs-redirect
Υποστηριζόμενες Γλώσσες 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"
        }
    }
}