Llamalerts

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

O que é Llamalerts?

Llamalerts é uma extensão do Chrome desenvolvida por Christopher Naron, e sua principal característica é "Checks the Deviantart Badges page and lets you know when you have trade offers.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Llamalerts

Baixe arquivos de extensão Llamalerts no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Llamalerts Llamalerts
ID llhfdehocdehnipbhhgonidbaonijogp
URL Oficial https://chrome.google.com/webstore/detail/llhfdehocdehnipbhhgonidbaonijogp
Descrição Checks the Deviantart Badges page and lets you know when you have trade offers.
Tamanho do Arquivo 9.61 KB
Contagem de Instalações 17
Versão Atual 1.0.2
Última Atualização 2017-04-25
Data de Publicação 2017-04-25
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor Christopher Naron
Email Christopher.naron@gmail
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}