Gotify Push

A Simple Chrome Extension For Sending and Receiving Messages from Gotify Push Notification Server.

Gotify Pushคืออะไร?

Gotify Push เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Santhosh Veer และคุณลักษณะหลักของมันคือ "A Simple Chrome Extension For Sending and Receiving Messages from Gotify Push Notification Server."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gotify Push

ดาวน์โหลดไฟล์ส่วนขยาย Gotify Push ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ▶ Gotify push

Gotify 🦄 Google Chrome Extension

Chrome Extension for Send Push Notification to gotify/server 🔔

🖥 System Font  
💅 Spectre.css Framework  
💯 Light Weight and Optimized  
⏳ Fetch API  
🦺 Supports on all Chromium Based web browsers

▶ Requirments

- Gotify API
- Latest Chromium Version for manifest v3 Support
- Allow CORS Headers to Access and Call Gotify API

▶ Service Worker

Chrome manifest v3 using Service Worker here we use it to create Chrome contextMenus to sending image,link and selected text to Gotify Server.

▶ Usage

- you can Find the Plugin Option page on Chrome toolbar Right side of the Address bar
- Click Gotify Setup Button and Enter your Gotify APP API URL and Save it
- That's all Successfully Setup Gotify Push Extension on your Brower

▶ Allow CORS

You must configure your server CORS allow this extension to Send push notification from this Extension

- Open config.yml File and Update this Setup

server:
  cors:
    alloworigins:
        - "chrome-extension://cbegkpikakpajcaoblfkeindhhikpfmd"
    allowmethods:
        - "GET"
        - "POST"
    allowheaders:
        - "Authorization"
        - "content-type"
  stream:
    allowedorigins: # allowed origins for websocket connections (same origin is always allowed, default only same origin)
      - "cbegkpikakpajcaoblfkeindhhikpfmd"

▶ Features

- Send Custom Push Notification
- Send Current page INFO
- Send Image URL
- Send Link
- Send Selected Text

▶ LICENSE

MIT                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gotify Push Gotify Push
ID cbegkpikakpajcaoblfkeindhhikpfmd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gotify-push/cbegkpikakpajcaoblfkeindhhikpfmd
คำอธิบาย A Simple Chrome Extension For Sending and Receiving Messages from Gotify Push Notification Server.
ขนาดไฟล์ 307 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2023-05-02
วันที่เผยแพร่ 2020-05-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Santhosh Veer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mskian/gotify-push
URL หน้าช่วยเหลือ https://github.com/mskian/gotify-push/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gotify Push",
    "description": "A Simple Chrome Extension For Sending and Receiving Messages from Gotify Push Notification Server.",
    "version": "0.4",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "icon_16.png",
        "default_popup": "pop.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/gotify.js",
                "js\/app.js",
                "js\/background.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "contextMenus",
        "notifications"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "short_name": "Gotify Push",
    "homepage_url": "https:\/\/gotify.net"
}