Plotti.co Tracker Pro

Plotti.co Tracker Pro (BETA) tracks numbers from websites and sends data to plotti.co service to show tracked values in real-time…

Τι είναι το Plotti.co Tracker Pro;

Το Plotti.co Tracker Pro είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://plotti.co, και η κύρια λειτουργία του είναι "Plotti.co Tracker Pro (BETA) tracks numbers from websites and sends data to plotti.co service to show tracked values in real-time…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Plotti.co Tracker Pro

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

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

                        Plotti.co Tracker Pro (BETA) tracks numbers from websites and sends data to plotti.co service to show tracked values in real-time charts. Take back control over your web applications and processes by creating your personal mission control center!

This is a specialized web scraping and data extraction tool for the single purpose of tracking and plotting numeric values on websites.

PERMISSIONS AND PRIVACY NOTICE:

This extension requires full permission for website content to track the numbers on pages you select, including saving the passwords for automation. As this is a permission with increased risks - I promise to do my best to make it as secure and privacy-protecting as possible. The extension will also execute some localhost-bound requests which make sense for programmatic access to tracked data and will be ignored at local installation by default.

The extension is open source, with full source code available at https://github.com/grandrew/plotticotrack

USAGE:

1. Click "Add", paste a website URL in URL field
2. Click "Visit and start"
3. Click "Select ... line" for the plot color you want (can have all three)
4. Click on the number to track
5. Click "Start updating"

There is optional "Auto" checkbox - when checked, it will auto-start updating the page when browser is started. As the settings are synchronized, it is recommended to have a separate chrome user for 'Auto' feature.

To view the plot in real-time, click "View". To read about all the features of Plottico, please visit https://plotti.co

Plotti.co Tracker includes an entropy window selector which tracks the exact information element you click on the page; also packs automatic macro recorder and password manager for complete automation. APIs to programmatically access extracted data available.

Please report bugs to https://github.com/grandrew/plotticotrack or in comments!
You can reach me directly at [email protected]                    

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

Όνομα Plotti.co Tracker Pro Plotti.co Tracker Pro
ID hjfkpgknlchgabgfhknaedgodmnhieep
Επίσημο URL https://chromewebstore.google.com/detail/plottico-tracker-pro/hjfkpgknlchgabgfhknaedgodmnhieep
Περιγραφή Plotti.co Tracker Pro (BETA) tracks numbers from websites and sends data to plotti.co service to show tracked values in real-time…
Μέγεθος Αρχείου 230 KB
Αριθμός Εγκαταστάσεων 17
Τρέχουσα Έκδοση 0.0.24
Τελευταία Ενημέρωση 2016-06-08
Ημερομηνία Δημοσίευσης 2016-06-08
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://plotti.co
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://plotti.co
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plotti.co Tracker Pro",
    "short_name": "Plottico-pro",
    "description": "",
    "version": "0.0.24",
    "minimum_chrome_version": "38",
    "icons": {
        "128": "assets\/icon_128.png",
        "48": "assets\/icon_48.png",
        "16": "assets\/icon_16.png"
    },
    "background": {
        "scripts": [
            "nolog.js",
            "lz-string.js",
            "gridhelper.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/icon_128.png",
        "default_popup": "control.html",
        "default_title": "PlotticoTrack chrome plugin"
    },
    "permissions": [
        "tabs",
        "background",
        "storage",
        "browsingData",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "templates\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "css_path.js",
                "jquery.min.js",
                "nolog.js",
                "recorder.js",
                "gridhelper.js",
                "lz-string.js",
                "super_selector.js",
                "tracksend.js"
            ]
        }
    ],
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "debug": true
}