Goodreads ratings in Audible

Displays Goodreads rankings for books in Audible store

Was ist Goodreads ratings in Audible?

Goodreads ratings in Audible ist eine Chrome-Erweiterung, die von kreich entwickelt wurde, und ihr Hauptmerkmal ist "Displays Goodreads rankings for books in Audible store".

Erweiterungsscreenshots

screenshot

Goodreads ratings in Audible-Erweiterungs-CRX-Datei herunterladen

Laden Sie Goodreads ratings in Audible-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Displays Goodreads rankings for books in the Audible store.

V0.0.5:
Add support for "2 for 1" sales pages.

V0.0.4:
Add support for "2 for 1" sales pages.
Support in HTTPS pages.
Support audible.de

V0.0.3:
Better support for collections on sales.

V0.0.2:
Added links to author pages in Goodreads.
Added ratings when hovering over a book catalog.                    

Grundlegende Informationen zur Erweiterung

Name Goodreads ratings in Audible Goodreads ratings in Audible
ID kjdbldainogjefeimhhmpcipidphjiho
Offizielle URL https://chromewebstore.google.com/detail/goodreads-ratings-in-audi/kjdbldainogjefeimhhmpcipidphjiho
Beschreibung Displays Goodreads rankings for books in Audible store
Dateigröße 247 KB
Installationsanzahl 307
Aktuelle Version 0.0.6
Letztes Update 2019-02-13
Veröffentlichungsdatum 2019-02-13
Bewertung 3.67/5 Insgesamt 9 Bewertungen
Entwickler kreich
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Goodreads ratings in Audible",
    "description": "Displays Goodreads rankings for books in Audible store",
    "version": "0.0.6",
    "permissions": [
        "https:\/\/www.goodreads.com\/"
    ],
    "background": {
        "scripts": [
            "js\/jquery-2.1.3.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/logo_19.png",
            "38": "images\/logo_38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.audible.com\/*",
                "*:\/\/www.audible.de\/*"
            ],
            "js": [
                "js\/underscore-min.js",
                "js\/jquery-2.1.3.min.js",
                "script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "manifest_version": 2
}