Your notifier

Helps to monitor changes on different web-pages, notifies about changes

Τι είναι το Your notifier;

Το Your notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://romanvlasenko.com, και η κύρια λειτουργία του είναι "Helps to monitor changes on different web-pages, notifies about changes".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Your notifier

Λήψη αρχείων επέκτασης Your notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is for you if you often catch yourself surfing the Internet to simply check if something changed on some page. Save your time, now yellow duck will do the job.

How to use:
1. Go to any web page
2. Click right button on value you're interested in, select "Watch this item" from context menu
3. Test it (optionally) and save it.

How it works:
Every minute it loads all pages from listed items and finds specified values via CSS selectors.

Notes: 
- It's not always possible to automatically generate CSS selector, sometimes you'll need to set it manually
- Extension checks items every minute, it does not show changed value immediately
- It doesn't work with asynchronously loaded values (via AJAX)
- Extension has some time limits on page loading, therefore sometimes it will be showing "Not Available" instead of real value, but it's rare cases

GitHub: https://github.com/RomanVlasenko/your-notifier                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Your notifier Your notifier
ID ijkpkehidneobagkboaoapccnfnnmemg
Επίσημο URL https://chromewebstore.google.com/detail/your-notifier/ijkpkehidneobagkboaoapccnfnnmemg
Περιγραφή Helps to monitor changes on different web-pages, notifies about changes
Μέγεθος Αρχείου 293 KB
Αριθμός Εγκαταστάσεων 788
Τρέχουσα Έκδοση 1.0.10
Τελευταία Ενημέρωση 2019-07-21
Ημερομηνία Δημοσίευσης 2019-07-21
Αξιολόγηση 3.83/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής https://romanvlasenko.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://romanvlasenko.github.io/your-notifier/
Υποστηριζόμενες Γλώσσες en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "short_name": "YoN",
    "version": "1.0.10",
    "browser_action": {
        "default_icon": "img\/icon32x32.png",
        "default_popup": "popup.html",
        "default_title": "Your notifier"
    },
    "background": {
        "scripts": [
            "lib\/jquery-2.0.3.min.js",
            "lib\/jquery-2.0.3.min.map",
            "lib\/underscore-min.js",
            "js\/common.js",
            "js\/urlChecker.js",
            "js\/updateSchedule.js",
            "js\/dialog\/eventPage.js",
            "js\/notification.js",
            "js\/storage\/storageLocal.js",
            "js\/storage\/storageSync.js",
            "js\/storage\/ruleStorage.js",
            "js\/storage\/storageUtils.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/icon16x16.png",
        "48": "img\/icon48x48.png",
        "128": "img\/icon128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/css\/dialog.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "lib\/jquery-ui-1.10.3.min.js",
                "lib\/selectorator.min.js",
                "js\/common.js",
                "js\/dialog\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dialog.html",
        "img\/load.gif"
    ],
    "permissions": [
        "",
        "storage",
        "alarms",
        "tabs",
        "notifications",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}