Gotify

Unofficial browser extension for Gotify

Qu'est-ce que Gotify ?

Gotify est une extension Chrome développée par https://gostew.art, et sa fonction principale est "Unofficial browser extension for Gotify".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Gotify

Téléchargez les fichiers d'extension Gotify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Gotify Gotify
ID defcailckfpgaigaiijligpnjipkhhmg
URL Officiel https://chromewebstore.google.com/detail/gotify/defcailckfpgaigaiijligpnjipkhhmg
Description Unofficial browser extension for Gotify
Taille du Fichier 315 KB
Nombre d'Installations 192
Version Actuelle 0.3.2
Dernière Mise à Jour 2021-01-22
Date de Publication 2020-05-17
Évaluation 2.50/5 Total 2 Évaluations
Développeur https://gostew.art
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/StewartThomson/Gotify-Ext/
URL de la Page d'Aide https://github.com/StewartThomson/Gotify-Ext/issues
Langues Prises en Charge 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"
    }
}