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
官方網址 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"
            ]
        }
    ]
}