Last.FM Normalizer

Normalizes Top Artist rankings by time spent listening instead of total plays.

Was ist Last.FM Normalizer?

Last.FM Normalizer ist eine Chrome-Erweiterung, die von hogueapps entwickelt wurde, und ihr Hauptmerkmal ist "Normalizes Top Artist rankings by time spent listening instead of total plays.".

Erweiterungsscreenshots

screenshot

Last.FM Normalizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Last.FM Normalizer-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

                        Edits Last.FM Profiles to contain a normalized artist chart. This means that the charts are created based off of the time the artists were listened to, not total play counts.

- Edits Last.FM profiles on the website to include the "normalized" table.

- Sorts your top artists by how long they have been listened to -- not by playcount.
 
- You can choose a timeframe (ex: last 7 days, last month, last 3 months, overall) and page through the results.
 
- Caches results browser-side in local storage, as to not make unnecessary requests.
 
- For example, the 7 day data is "cached" for one hour. If the data is older than that, it will throw it away and request new data.                    

Grundlegende Informationen zur Erweiterung

Name Last.FM Normalizer Last.FM Normalizer
ID fgcgjpnojhfpkanpfichggjfboomocnd
Offizielle URL https://chrome.google.com/webstore/detail/lastfm-normalizer/fgcgjpnojhfpkanpfichggjfboomocnd
Beschreibung Normalizes Top Artist rankings by time spent listening instead of total plays.
Dateigröße 23.95 KB
Installationsanzahl 271
Aktuelle Version 1.0.3
Letztes Update 2015-01-12
Veröffentlichungsdatum 2015-01-12
Bewertung 2.92/5 Insgesamt 12 Bewertungen
Entwickler hogueapps
Zahlungsart free
Erweiterungswebsite http://github.com/mikehogue/lastfmnormalizer
Hilfeseite URL http://github.com/mikehogue/lastfmnormalizer
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Last.FM Normalizer",
    "description": "Normalizes Top Artist rankings by time spent listening instead of total plays.",
    "version": "1.0.3",
    "permissions": [
        "activeTab",
        "webRequest",
        "*:\/\/*.last.fm\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "arrow_left.png"
    ],
    "manifest_version": 2
}