Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Was ist Postgres Docs Redirect?
Postgres Docs Redirect ist eine Chrome-Erweiterung, die von tommaso.amici entwickelt wurde, und ihr Hauptmerkmal ist "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Erweiterungsscreenshots
Postgres Docs Redirect-Erweiterungs-CRX-Datei herunterladen
Laden Sie Postgres Docs Redirect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
Offizielle URL | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
Beschreibung | Automatically redirects to current postgreSQL documentation when a docs page is requested |
Dateigröße | 23.15 KB |
Installationsanzahl | 105 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2020-05-10 |
Veröffentlichungsdatum | 2020-05-10 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | tommaso.amici |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/TommasoAmici/postgres-docs-redirect |
Unterstützte Sprachen | 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" } } } |