Real Price Tracker

Real Price Tracker chrome extension shows the product's price history graph on Amazon, Flipkart, Myntra and other shopping sites.

Τι είναι το Real Price Tracker;

Το Real Price Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.realpricetracker.com, και η κύρια λειτουργία του είναι "Real Price Tracker chrome extension shows the product's price history graph on Amazon, Flipkart, Myntra and other shopping sites.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Real Price Tracker

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

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

                        Price tracker:

Amazon India Price tracker extension helps user in deciding the correct time to buy a product by just looking at historical price graph. It also provides a helping hand to user to know if the deal is really genuine during sale events.

Our user centric UI/UX shows the price graph or price history on product page itself and you don't have to click anywhere or visit any external page for that, which ensures that you don't miss to see graph before buying a product. 

User Guide for Price Tracker:
1. Install this Chrome Extension by clicking on Add to Chrome button above.
2. Now visit any shopping website.
3. You will see "Real Price Tracker" icon on the top-right side.
5. Click on that icon to check the price graph.

Version 1.4.3 changes
>> Price history increased from 45 days to 6 months
>> Minor bug fixes

By installing the extension, you accept the terms of the "Real Price Tracker Terms of Service" and allow the extension to redirect to affiliate program links. 
(https://www.realpricetracker.com/terms)  

Disclaimer: 
Our extension collects information from visited shopping websites, such as product titles, current prices, and related details. This data is utilized to generate price history graphs while ensuring the utmost privacy and data security. It is important to note that no personally identifiable information is collected. We prioritize privacy and have strict policies in place to ensure that the collected information is never shared or transmitted to external parties.

For more details please read our Privacy Policy - https://www.realpricetracker.com/privacy-policy/                    

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

Όνομα Real Price Tracker Real Price Tracker
ID ohfbnjhbpjlkbkagpkdoocefjocageoa
Επίσημο URL https://chrome.google.com/webstore/detail/real-price-tracker/ohfbnjhbpjlkbkagpkdoocefjocageoa
Περιγραφή Real Price Tracker chrome extension shows the product's price history graph on Amazon, Flipkart, Myntra and other shopping sites.
Μέγεθος Αρχείου 313 KB
Αριθμός Εγκαταστάσεων 46,119
Τρέχουσα Έκδοση 1.4.7
Τελευταία Ενημέρωση 2023-06-25
Ημερομηνία Δημοσίευσης 2020-06-12
Αξιολόγηση 4.55/5 Συνολικά 3280 Αξιολογήσεις
Προγραμματιστής https://www.realpricetracker.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.realpricetracker.com/
URL της Σελίδας Πολιτικής Απορρήτου https://www.realpricetracker.com/privacy-policy
Υποστηριζόμενες Γλώσσες en,mr,hi,bn,gu,ta,te,ml
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "1.4.7",
    "icons": {
        "128": "images\/icon.png"
    },
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Price Tracker",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "graph.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "messaging.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "notifications",
        "tabs",
        "cookies",
        "gcm",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "graph.js",
                "images\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "short_name": "Price Tracker"
}