Gotify
Unofficial browser extension for Gotify
Gotify क्या है?
Gotify https://gostew.art द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unofficial browser extension for Gotify"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gotify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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                     एक्सटेंशन की मूल जानकारी
| नाम |  | 
| 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"
    }
} | |