Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Postgres Docs Redirect là gì?
Postgres Docs Redirect là một tiện ích mở rộng Chrome được phát triển bởi tommaso.amici, và tính năng chính của nó là "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Postgres Docs Redirect
Tải xuống các tệp mở rộng Postgres Docs Redirect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Postgres Docs Redirect |
ID | ajcfpdiobeccopppdonocgddplegokbl |
URL Chính Thức | https://chromewebstore.google.com/detail/postgres-docs-redirect/ajcfpdiobeccopppdonocgddplegokbl |
Mô tả | Automatically redirects to current postgreSQL documentation when a docs page is requested |
Kích Thước Tệp | 23.15 KB |
Số Lần Cài Đặt | 105 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2020-05-10 |
Ngày Phát Hành | 2020-05-10 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | tommaso.amici |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TommasoAmici/postgres-docs-redirect |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |