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