Gotify
Unofficial browser extension for Gotify
什麼是Gotify?
Gotify是由https://gostew.art開發的Chrome擴展程式,該擴展的主要功能是“Unofficial browser extension for Gotify”。
擴展截圖
下載Gotify擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | defcailckfpgaigaiijligpnjipkhhmg |
| 官方網址 | 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"
}
} | |