Car Value

Car Value of used cars from Kelly Blue Book (kbb) to help find car deals

Τι είναι το Car Value;

Το Car Value είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον app.orig, και η κύρια λειτουργία του είναι "Car Value of used cars from Kelly Blue Book (kbb) to help find car deals".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Get value of used cars from Kelly Blue Book (KBB) on sites matching following regular expression...

 craigslist.org
 autotrader.com
 kbb.com
 edmunds.com
 truecar.com
 carmax.com
 /cars/


Features included...
1.  In Popup
  a. Enable/Disable
  b. Auto Detect the car on page (This is experimental feature thus may not work accurately all the time)
  c. Enable on more sites matching given URLs using Regular Expression
  d. Show the Car Value in the page for which it is not automatically enabled
2.  On Web Page
  a. Load all makes by default
  b. Load model, year and trim based on user selection
  c. Try to detect mileage
  d. Show KBB values of car ...
     A. Fair value
     B. Good Value
     C. Very Good Value
     D. Excellent Value
  e. Link to KBB page (No more search for car...get direct link to KBB page)


Value: Saves time of looking up car value (KBB value) on search engines and sites. Makes car hunting little less painful!

Steps
1. select year
2. select make
3. select mode
4. select trim
5. populate zipcode
6. populate mileage
7. click Get button to fetch and view the KBB private party values of the car


Release History
v1.5 (2023-07-13)
- upgrade to latest kbb apis
- refactored code to simplify some of the code
- made it work again 

v1.3 (2018-09-01)
- bux fix: updated the source api and price information is now loading

v1.2 (2016-17-03)
- bug fix: in manifest.json browser_action.default_icon.24 had value 24x24.png instead of actual path of image (assets/img/24x24.png)

v1.1 (2015-10-30)
- using new KBB urls
- removed trims with ", " in the name as these are not valid trims

v1.0 (2015)
- original app                    

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

Όνομα Car Value Car Value
ID pkhcndpmkeaingajpeoiinkpiojibpmi
Επίσημο URL https://chromewebstore.google.com/detail/car-value/pkhcndpmkeaingajpeoiinkpiojibpmi
Περιγραφή Car Value of used cars from Kelly Blue Book (kbb) to help find car deals
Μέγεθος Αρχείου 100 KB
Αριθμός Εγκαταστάσεων 257
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2023-07-14
Ημερομηνία Δημοσίευσης 2020-02-18
Αξιολόγηση 3.57/5 Συνολικά 21 Αξιολογήσεις
Προγραμματιστής app.orig
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://tejji.com/home/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Car Value",
    "version": "1.5",
    "description": "Car Value of used cars from Kelly Blue Book (kbb) to help find car deals",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "optional_permissions": [],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "icons": {
        "24": "assets\/img\/24x24.png",
        "128": "assets\/img\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.craigslist.org\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery-2.1.1.min.js",
                "assets\/js\/panel.js",
                "assets\/craigslist\/craigslist-kbb.js"
            ],
            "css": [
                "assets\/js\/panel.css",
                "assets\/craigslist\/craigslist-kbb.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/js\/jquery-2.1.1.min.js",
                "\/assets\/craigslist\/kbb.html"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "action": {
        "default_icon": {
            "24": "assets\/img\/24x24.png"
        },
        "default_title": "Car Value",
        "default_popup": "assets\/craigslist\/popup.html"
    },
    "background": {
        "service_worker": "assets\/js\/background.js",
        "type": "module"
    },
    "manifest_version": 3
}