Llamalerts

Checks the Deviantart Badges page and lets you know when you have trade offers.

Llamalertsคืออะไร?

Llamalerts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Christopher Naron และคุณลักษณะหลักของมันคือ "Checks the Deviantart Badges page and lets you know when you have trade offers."

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

screenshot
screenshot

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

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

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

                        -- No Longer Being Maintained. The source is on github, feel free to edit and update it as you like --

Llamalerts auto-refreshes your Deviantart Badges page and plays an audio cue if there's any open trade offers.

How to use:
   1. Go to the Deviantart Badges page.
   2. Type how often you want to refresh in the box
   3. Click the toggle switch on the extension
   4. Open another tab and do something else.
   To stop the extension go back to the Badges page and then click the toggle switch again.                    

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

ชื่อ Llamalerts Llamalerts
ID llhfdehocdehnipbhhgonidbaonijogp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/llhfdehocdehnipbhhgonidbaonijogp
คำอธิบาย Checks the Deviantart Badges page and lets you know when you have trade offers.
ขนาดไฟล์ 9.61 KB
จำนวนการติดตั้ง 17
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2017-04-25
วันที่เผยแพร่ 2017-04-25
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Christopher Naron
อีเมล Christopher.naron@gmail
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Christopher Naron ",
    "name": "Llamalerts",
    "description": "Checks the Deviantart Badges page and lets you know when you have trade offers.",
    "version": "1.0.2",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "Logo.png"
    },
    "icons": {
        "16": "Logo.png",
        "32": "active_logo.png",
        "64": "64_logo.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts.js"
            ]
        }
    ]
}