Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Cos'è Postgres Docs Redirect?
Postgres Docs Redirect è un'estensione di Chrome sviluppata da tommaso.amici, e la sua funzione principale è "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Postgres Docs Redirect
Scarica i file di estensione Postgres Docs Redirect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
URL Ufficiale | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
Descrizione | Automatically redirects to current postgreSQL documentation when a docs page is requested |
Dimensione del File | 23.15 KB |
Conteggio Installazioni | 105 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2020-05-10 |
Data di Pubblicazione | 2020-05-10 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | tommaso.amici |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/TommasoAmici/postgres-docs-redirect |
Lingue Supportate | 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" } } } |