FA Notes Notifier

Sends you a notification whenever you get a new note on FA.

FA Notes Notifierคืออะไร?

FA Notes Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NerdyRedPanda และคุณลักษณะหลักของมันคือ "Sends you a notification whenever you get a new note on FA."

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

screenshot
screenshot

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

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

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

                        Must be using the most recent FA design.

This extension can notify you when you get a new note on FA.

No setup needed! It works in the background to notify you :)

Source code is located here: https://github.com/NerdyRedPanda/FA-Notes-Notifier

Permissions breakdown:
Read and Change Data - Gets notes from FA, and profile pictures

Display Notifications: To display the note notification.                    

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

ชื่อ FA Notes Notifier FA Notes Notifier
ID jnopajjjgbhbdlbnoefacpmhcmehkigf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fa-notes-notifier/jnopajjjgbhbdlbnoefacpmhcmehkigf
คำอธิบาย Sends you a notification whenever you get a new note on FA.
ขนาดไฟล์ 18.95 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-02-02
วันที่เผยแพร่ 2020-02-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา NerdyRedPanda
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FA Notes Notifier",
    "description": "Sends you a notification whenever you get a new note on FA.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "settings.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/*.furaffinity.net\/*",
        "storage",
        "notifications",
        "*:\/\/*.facdn.net\/*",
        "alarms"
    ],
    "background": {
        "scripts": [
            "browser-polyfill-min.js",
            "getNotes.js"
        ]
    }
}