Postgres Docs Redirect
Automatically redirects to current postgreSQL documentation when a docs page is requested
Что такое Postgres Docs Redirect?
Postgres Docs Redirect - это расширение Chrome, разработанное tommaso.amici, и его основная функция - "Automatically redirects to current postgreSQL documentation when a docs page is requested".
Снимки экрана расширения
Скачать файл CRX расширения Postgres Docs Redirect
Скачайте файлы расширений 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" } } } |