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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } } |