Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Qu'est-ce que Postgres Docs Redirect ?
Postgres Docs Redirect est une extension Chrome développée par tommaso.amici, et sa fonction principale est "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Postgres Docs Redirect
Téléchargez les fichiers d'extension Postgres Docs Redirect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
URL Officiel | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
Description | Automatically redirects to current postgreSQL documentation when a docs page is requested |
Taille du Fichier | 23.15 KB |
Nombre d'Installations | 105 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2020-05-10 |
Date de Publication | 2020-05-10 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | tommaso.amici |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/TommasoAmici/postgres-docs-redirect |
Langues Prises en Charge | 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" } } } |