Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Postgres Docs Redirectとは何ですか?
Postgres Docs Redirectはtommaso.amiciによって開発されたChromeの拡張機能で、その主な機能は「Automatically redirects to current postgreSQL documentation when a docs page is requested」です。
拡張機能のスクリーンショット
Postgres Docs Redirect拡張機能のCRXファイルをダウンロード
Postgres Docs Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
公式URL | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
説明 | Automatically redirects to current postgreSQL documentation when a docs page is requested |
ファイルサイズ | 23.15 KB |
インストール数 | 105 |
現在のバージョン | 1.2.1 |
最終更新日 | 2020-05-10 |
公開日 | 2020-05-10 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | tommaso.amici |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/TommasoAmici/postgres-docs-redirect |
対応言語 | 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" } } } |