Duke Amazon Browser

On Amazon, this extension will display books available in Duke Libraries, TRLN, and WorldCat.

Τι είναι το Duke Amazon Browser;

Το Duke Amazon Browser είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sarah Park, και η κύρια λειτουργία του είναι "On Amazon, this extension will display books available in Duke Libraries, TRLN, and WorldCat.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Duke Amazon Browser

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

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

                        This extension allows users to search for books, CDs, DVDs on Amazon pages at Duke Libraries, TRLN Libraries, and WorldCat. 

Ver. 5.3
Update the WorldCat URL

Ver. 5.2
Updated the search URL according to the catalog's search syntax changes

Ver. 5.1
Improved handling of extension messages by search scope

Ver. 5.0
Updated to meet the manifest version 3.0

Ver. 4.0
Changed the wordings describing "Found" and "Not Found" cases
Linked the "Not Found" message to the library catalogs so that users can click and search and explore the library catalog themselves. 

Ver. 3.4
Updated to work with recent changes on Amazon's web pages. Also, a library page will be opened in a new tab.

Ver. 3.3
Changed to search the combination of the title (main title only) and the first author of the book on Amazon's book page

Ver. 3.2
Changed the default search to title search limiting to the main title of the book

Ver. 3.1
Changed the URL of the new library Catalog

Ver. 2.2 
Supports DVD/CD searches at Duke Libraries
Supports grabbing titles on various formats such as Kindle, Audiobooks, etc.  

Based on Hong Gyu Han's Northwest Owens Linky (2009), and Sarah Park's Amazon Library Linker For Lovejoy Library (2014).                    

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

Όνομα Duke Amazon Browser Duke Amazon Browser
ID gaclienddbbkpaonilgmgninbgggidbe
Επίσημο URL https://chromewebstore.google.com/detail/duke-amazon-browser/gaclienddbbkpaonilgmgninbgggidbe
Περιγραφή On Amazon, this extension will display books available in Duke Libraries, TRLN, and WorldCat.
Μέγεθος Αρχείου 19.94 KB
Αριθμός Εγκαταστάσεων 120
Τρέχουσα Έκδοση 5.3
Τελευταία Ενημέρωση 2023-11-16
Ημερομηνία Δημοσίευσης 2019-05-10
Προγραμματιστής Sarah Park
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "name": "Duke Amazon Browser",
    "version": "5.3",
    "description": "On Amazon, this extension will display books available in Duke Libraries, TRLN, and WorldCat.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "dukelinky.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        "https:\/\/find.library.duke.edu\/",
        "https:\/\/www.worldcat.org\/",
        "https:\/\/search.worldcat.org\/"
    ],
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3
}