Push Client
An extension that can send and receive pushes for the Pushover.net service
Push Clientคืออะไร?
Push Client เป็นส่วนขยายของ Chrome ที่พัฒนาโดย editter และคุณลักษณะหลักของมันคือ "An extension that can send and receive pushes for the Pushover.net service"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Push Client
ดาวน์โหลดไฟล์ส่วนขยาย Push Client ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An unofficial Pushover extension to send and receive notifications from the Pushover.net service You can send selected text, images, and current tab URLs to other devices using your own App Key and App Tokens. You can register your chrome browser as a device which allows you to send messages to it from other devices. Version 0.14.0 - Fixed bug with Chrome update preventing background updates - Added Password/Key toggles so they aren't visible by default - Added Icon overrides to allow custom icons to appear based on the text of the message. See bottom of the options page for details - Updated to bootstraps default dark mode - Updated backend code to latest versions Version 0.13.0 - Added option to pick the startup page - Added dark theme Version 0.12.0 - Added attachments and html format to the Send Message page - Remove html from the notification because it doesn't render correctly - Updated to new manifest V3 format - Refactored build code Version 0.11.0 - Updating branding due to copyright issues Version 0.10.0 - Added option to exclude context menu Version 0.9.0 - Sort apps in the left navigation - Allow HTML in the messages Version 0.8.0 - Bug fixes Version 0.7.0 - Adding SourceMaps for easier debugging Version 0.6.0 - Fixed issue if Web Socket connection is denied due to network it won't attempt to reconnect - Fixed slide issues when compiled for release Version 0.5.0 - Updated library version Version 0.4.0 - Fixed background sync issues Version 0.3.0 - Updated the UI to split apps into tabs - Added the ability to send free form text from the extension Version 0.2.0 - Fixed an issue where clicking Refresh to soon after opening the dialog would remove old messages Version 0.1.0 - Initial release ***The author of this plugin has no affiliation with Pushover, LLC.***
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Push Client |
ID | fcmngfmocgakhjghfmgbbhlkenccgpdh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/push-client/fcmngfmocgakhjghfmgbbhlkenccgpdh |
คำอธิบาย | An extension that can send and receive pushes for the Pushover.net service |
ขนาดไฟล์ | 617 KB |
จำนวนการติดตั้ง | 768 |
เวอร์ชันปัจจุบัน | 0.14.0 |
อัปเดตครั้งล่าสุด | 2024-01-25 |
วันที่เผยแพร่ | 2020-03-19 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | editter |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://ericditter.com/pushover_extension |
URL หน้าช่วยเหลือ | https://ericditter.com/pushover_extension |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Push Client", "short_name": "Push Client", "version": "0.14.0", "description": "An extension that can send and receive pushes for the Pushover.net service", "minimum_chrome_version": "116", "action": { "default_icon": "assets\/144.png", "default_title": "Push Client", "default_popup": "index.html" }, "icons": { "192": "assets\/192.png", "144": "assets\/144.png", "96": "assets\/96.png", "32": "assets\/32.png", "16": "assets\/16.png" }, "options_ui": { "page": "index.html?options" }, "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "contextMenus", "storage", "notifications" ], "host_permissions": [ "*:\/\/*\/*" ], "manifest_version": 3 } |