Notifier for Rizzoma (beta)

Get notified of new messages in Rizzoma.

Notifier for Rizzoma (beta)คืออะไร?

Notifier for Rizzoma (beta) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zachary Yaro และคุณลักษณะหลักของมันคือ "Get notified of new messages in Rizzoma."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notifier for Rizzoma (beta)

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

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

                        Notifier for Rizzoma notifies you of new unread messages and edits in Rizzoma even when Rizzoma.com is not open.


Rizzoma is a wave service that allows your conversations to seamlessly transition between e-mail- and instant messaging-type conversations and includes wiki and document creation functionality to make it easier for you to communicate and collaborate in real-time.


Update history:
0.7
• Syncs options
• Fixes a bug that prevented the extension checking for unread waves until prompted
0.6.2
• Fixes single wave notification not being dismissed when the wave is read
0.6.1
• Shows user avatars in single wave notifications
• Fixes single and multi notifications not removing each other
• Adds “About” section to options page
0.6
• Adds option to not show notifications when in a Rizzoma tab
• Fixes notifications showing up and sounds being played when waves are marked as read but there are no new waves
0.5
• Browser action unread count lists total unread waves
• Larger notification icon
• No longer displays the unread count in the notification icon
 - The unread count is still displayed in notification text
0.4
• Switches to “official” Rizzoma icons (from the Rizzoma team)
• Displays icons with unread counts on notifications with multiple unread waves
0.3
• Adds option to enable/disable desktop notifications
• Adds (optional) notification sound
0.2.1
• Removes unnecessary debug notification
• Changes the options screen font depending on the user's operating system (to match the Chrome Settings page)
• Adds missing clear function to Chrome notifications shim
0.2
• Adds toolbar button with unread count
 - Clicking it just opens Rizzoma for now.
• Adds options page with option to change the refresh interval
• Adds webkitNotifications fallback for older versions of Chrome
0.1
• Initial release with desktop notifications for unread waves
 - This version is still buggy and incomplete, but it usually works.
 - The main issue is you must be signed into Rizzoma before installing the extension or it will give you no visual indication that you are not signed in and silently fail.                    

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

ชื่อ Notifier for Rizzoma (beta) Notifier for Rizzoma (beta)
ID pfjhanjpohjlodomhamejgpojpknnhhg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notifier-for-rizzoma-beta/pfjhanjpohjlodomhamejgpojpknnhhg
คำอธิบาย Get notified of new messages in Rizzoma.
ขนาดไฟล์ 47.59 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 0.7.0.1
อัปเดตครั้งล่าสุด 2014-08-03
วันที่เผยแพร่ 2014-08-03
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Zachary Yaro
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rizzoma.com
URL หน้าช่วยเหลือ https://rizzoma.com/topic/1947525610e23f685b22d3dc82f59ac2/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notifier for Rizzoma (beta)",
    "version": "0.7.0.1",
    "description": "Get notified of new messages in Rizzoma.",
    "options_page": "options.html",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/rizzoma.com\/topic\/*"
            ],
            "js": [
                "scripts\/riz_auth_content_script.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "48": "images\/ext_icon_48.png",
        "128": "images\/ext_icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/riz_icon_gray_19.png",
            "38": "images\/riz_icon_gray_38.png"
        },
        "default_title": "Go to Rizzoma"
    },
    "permissions": [
        "alarms",
        "background",
        "notifications",
        "tabs",
        "storage",
        "*:\/\/rizzoma.com\/*"
    ]
}