Gotify

Unofficial browser extension for Gotify

Gotify란 무엇입니까?

Gotify은(는) https://gostew.art에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial browser extension for Gotify"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Gotify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}