Gotify

Unofficial browser extension for Gotify

O que é Gotify?

Gotify é uma extensão do Chrome desenvolvida por https://gostew.art, e sua principal característica é "Unofficial browser extension for Gotify".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Gotify

Baixe arquivos de extensão Gotify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Gotify Gotify
ID defcailckfpgaigaiijligpnjipkhhmg
URL Oficial https://chromewebstore.google.com/detail/gotify/defcailckfpgaigaiijligpnjipkhhmg
Descrição Unofficial browser extension for Gotify
Tamanho do Arquivo 315 KB
Contagem de Instalações 192
Versão Atual 0.3.2
Última Atualização 2021-01-22
Data de Publicação 2020-05-17
Classificação 2.50/5 Total de 2 Avaliações
Desenvolvedor https://gostew.art
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/StewartThomson/Gotify-Ext/
URL da Página de Ajuda https://github.com/StewartThomson/Gotify-Ext/issues
Idiomas Suportados 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"
    }
}