Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Apa itu Postgres Docs Redirect?
Postgres Docs Redirect adalah ekstensi Chrome yang dikembangkan oleh tommaso.amici, dan fitur utamanya adalah "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Postgres Docs Redirect
Unduh file ekstensi Postgres Docs Redirect dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
URL Resmi | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
Deskripsi | Automatically redirects to current postgreSQL documentation when a docs page is requested |
Ukuran File | 23.15 KB |
Jumlah Instalasi | 105 |
Versi Saat Ini | 1.2.1 |
Terakhir Diperbarui | 2020-05-10 |
Tanggal Publikasi | 2020-05-10 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | tommaso.amici |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/TommasoAmici/postgres-docs-redirect |
Bahasa yang Didukung | 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" } } } |