Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Wat is Postgres Docs Redirect?
Postgres Docs Redirect is een Chrome-extensie ontwikkeld door tommaso.amici, en de belangrijkste functie is "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Extensie Screenshots
Download het CRX-bestand van de extensie Postgres Docs Redirect
Download Postgres Docs Redirect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
Officiële URL | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
Beschrijving | Automatically redirects to current postgreSQL documentation when a docs page is requested |
Bestandsgrootte | 23.15 KB |
Aantal Installaties | 105 |
Huidige Versie | 1.2.1 |
Laatst Bijgewerkt | 2020-05-10 |
Publicatiedatum | 2020-05-10 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | tommaso.amici |
Betalingswijze | free |
Extensiewebsite | https://github.com/TommasoAmici/postgres-docs-redirect |
Ondersteunde Talen | 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" } } } |