Llamalerts

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

什么是Llamalerts?

Llamalerts是由Christopher Naron开发的Chrome扩展程序,该扩展的主要功能是“Checks the Deviantart Badges page and lets you know when you have trade offers.”。

扩展截图

screenshot
screenshot

下载Llamalerts扩展crx文件

下载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"
            ]
        }
    ]
}