Picarto Notifier

An unofficial notifier for Picarto.

Picarto Notifierคืออะไร?

Picarto Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Banderi และคุณลักษณะหลักของมันคือ "An unofficial notifier for Picarto."

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

screenshot
screenshot

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

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

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

                        Displays the current people streaming in the popup, the number of the streamers in the badge, and activates a desktop notification every time someone starts streaming.
(check the options page for further settings)


-- N.B.: It only works for people you follow, and requires you to be logged in to Picarto! The extension *will not* scrape/intercept or otherwise record any personal information on Google, Google Play or Picarto. Google Analytics was also removed in version 1.3.3.

-- Changelog
- 2.5: Fixed the fixable...
- 2.4: Update for the bloody 2021 Picarto update
- 2.3: Added OAuth override, fixed some minor stuff
- 2.2: Added separate tab for useful Picarto hacks/fixes, as well as some new ones
- 2.1: Added Markdown injection for stream chats
- 2.0: Moved options to popup, added API support (OAuth necessary due to recent Picarto updates)
- 1.3: Added multistream sessions real-time feedback (disabled by default)
- 1.2: Added desktop notification audio (disabled by default)
- 1.1: Added desktop notification settings                    

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

ชื่อ Picarto Notifier Picarto Notifier
ID fifjhakdmflgahkghkijipchfomdajfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/picarto-notifier/fifjhakdmflgahkghkijipchfomdajfn
คำอธิบาย An unofficial notifier for Picarto.
ขนาดไฟล์ 168 KB
จำนวนการติดตั้ง 1,022
เวอร์ชันปัจจุบัน 2.5.1
อัปเดตครั้งล่าสุด 2021-04-12
วันที่เผยแพร่ 2019-06-30
คะแนน 4.59/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา Banderi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Picarto Notifier",
    "version": "2.5.1",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.picarto.tv\/*",
        "storage",
        "notifications",
        "identity",
        "cookies"
    ],
    "description": "An unofficial notifier for Picarto.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "web_accessible_resources": [
        "defaults.json"
    ],
    "background": {
        "page": "global.html"
    },
    "content_scripts": [
        {
            "permissions": [
                "storage"
            ],
            "matches": [
                "http:\/\/picarto.tv\/*",
                "https:\/\/picarto.tv\/*",
                "http:\/\/www.picarto.tv\/*",
                "https:\/\/www.picarto.tv\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/hidebar.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": "popup.html"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "42.0"
        }
    }
}