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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } |