Gotify
Unofficial browser extension for Gotify
Gotifyคืออะไร?
Gotify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gostew.art และคุณลักษณะหลักของมันคือ "Unofficial browser extension for Gotify"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gotify
ดาวน์โหลดไฟล์ส่วนขยาย Gotify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension for viewing and managing Gotify servers You must configure your server CORS to allow the extension to make requests, like so: In your config.yml server: cors: alloworigins: - "chrome-extension://defcailckfpgaigaiijligpnjipkhhmg" allowmethods: - "GET" - "POST" - "OPTIONS" - "DELETE" allowheaders: - "Authorization" - "content-type" stream: allowedorigins: # allowed origins for websocket connections (same origin is always allowed, default only same origin) - "defcailckfpgaigaiijligpnjipkhhmg" Or, in your docker-compose.yml environment: GOTIFY_SERVER_CORS_ALLOWORIGINS: "- \"chrome-extension://defcailckfpgaigaiijligpnjipkhhmg\"" GOTIFY_SERVER_CORS_ALLOWHEADERS: "- \"Authorization\"\n- \"content-type\"" GOTIFY_SERVER_CORS_ALLOWMETHODS: "- \"GET\"\n- \"POST\"\n- \"OPTIONS\"\n- \"DELETE\"" GOTIFY_SERVER_STREAM_ALLOWEDORIGINS: "- \"defcailckfpgaigaiijligpnjipkhhmg\"" Logo is from https://github.com/gotify/logo More info can be found here: https://gotify.net/docs/config
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gotify |
ID | defcailckfpgaigaiijligpnjipkhhmg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gotify/defcailckfpgaigaiijligpnjipkhhmg |
คำอธิบาย | Unofficial browser extension for Gotify |
ขนาดไฟล์ | 315 KB |
จำนวนการติดตั้ง | 192 |
เวอร์ชันปัจจุบัน | 0.3.2 |
อัปเดตครั้งล่าสุด | 2021-01-22 |
วันที่เผยแพร่ | 2020-05-17 |
คะแนน | 2.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://gostew.art |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/StewartThomson/Gotify-Ext/ |
URL หน้าช่วยเหลือ | https://github.com/StewartThomson/Gotify-Ext/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gotify", "version": "0.3.2", "description": "Unofficial browser extension for Gotify", "manifest_version": 2, "icons": { "16": "assets\/logo-16.png", "48": "assets\/logo-48.png", "128": "assets\/logo-128.png" }, "background": { "scripts": [ "background.js", "runtime.js" ], "styles": [ "styles.css" ] }, "permissions": [ "storage" ], "browser_action": { "default_popup": "index.html" } } |