Llamalerts

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

Llamalerts là gì?

Llamalerts là một tiện ích mở rộng Chrome được phát triển bởi Christopher Naron, và tính năng chính của nó là "Checks the Deviantart Badges page and lets you know when you have trade offers.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Llamalerts

Tải xuống các tệp mở rộng Llamalerts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        -- 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Llamalerts Llamalerts
ID llhfdehocdehnipbhhgonidbaonijogp
URL Chính Thức https://chrome.google.com/webstore/detail/llhfdehocdehnipbhhgonidbaonijogp
Mô tả Checks the Deviantart Badges page and lets you know when you have trade offers.
Kích Thước Tệp 9.61 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2017-04-25
Ngày Phát Hành 2017-04-25
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Christopher Naron
Email Christopher.naron@gmail
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}