Deviant-Notify

Keep track of your DeviantArt notifications and messages in (almost) real time

Deviant-Notifyคืออะไร?

Deviant-Notify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DJDavid98 และคุณลักษณะหลักของมันคือ "Keep track of your DeviantArt notifications and messages in (almost) real time"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Deviant-Notify

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

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

                        Disclaimer: This is an UNOFFICIAL extension created by a regular user of the website, it is not endorsed nor maintained by DeviantArt.

How does it work?

The extension sends specific API requests to the site every N minutes (which can be adjusted in the options) and aggregates the notification and note counts based on the response.

The total amount is then displayed on the icon, and when clicked it opens a menu that looks similar to the site's top bar with the chat, notifications and watch icons, all of which can be clicked to go to their respective pages.

By default, the extension sends a notification and plays a sound when the total increases, but both the notification and its sound can be disabled if you only want the counter. The notification also disappears after a couple seconds initially, but this can be changed to a longer duration or disabled entirely (by setting the timeout to 0), so only a click on the close button or one of the buttons will clear it.

What is counted as a notification exactly?

The counter displays an aggregated total of:

 - your own unread notes
 - the total number of unread items in your watch feed (can filtered by type)
 - all unread items in your notifications feed (can be filtered by type)

The word "unread" refers to a type/category of notifications which have not been marked read yet via a dedicated button in the extension popup. The time when that button was pressed is stored in the browser, and you will not get another notification for that type until you receive a newer item. The badge on the extension icon will also only show an aggregate of unread items.

Additionally, there are links to mark all current notifications as read and to reset the read state (so all notification will show as unread) in the extension popup.                    

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

ชื่อ Deviant-Notify Deviant-Notify
ID hlmlndlfjhddkjdcmgjjmdefcplnekop
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/deviant-notify/hlmlndlfjhddkjdcmgjjmdefcplnekop
คำอธิบาย Keep track of your DeviantArt notifications and messages in (almost) real time
ขนาดไฟล์ 86.36 KB
จำนวนการติดตั้ง 411
เวอร์ชันปัจจุบัน 1.5.1
อัปเดตครั้งล่าสุด 2022-02-06
วันที่เผยแพร่ 2021-03-07
คะแนน 3.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา DJDavid98
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.deviantart.com/deviant-notify
URL หน้าช่วยเหลือ https://github.com/DJDavid98/Deviant-Notify/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Deviant-Notify",
    "version": "1.5.1",
    "description": "Keep track of your DeviantArt notifications and messages in (almost) real time",
    "applications": {
        "gecko": {
            "id": "{5cc28e7e-ae1f-4835-be60-ea3fe22ab007}",
            "strict_min_version": "54.0"
        }
    },
    "permissions": [
        "https:\/\/www.deviantart.com\/",
        "storage",
        "notifications",
        "cookies"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/notif-16.png",
            "32": "img\/notif-32.png",
            "48": "img\/notif-48.png",
            "128": "img\/notif-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.deviantart.com\/*"
            ],
            "js": [
                "js\/deviant-notify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/app-16.png",
        "32": "img\/app-32.png",
        "48": "img\/app-48.png",
        "128": "img\/app-128.png"
    },
    "manifest_version": 2
}