Last.FM Normalizer

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

Hvad er Last.FM Normalizer?

Last.FM Normalizer er en Chrome-udvidelse udviklet af hogueapps, og dens hovedfunktion er "Normalizes Top Artist rankings by time spent listening instead of total plays.".

Udvidelsesskærmbilleder

screenshot

Download Last.FM Normalizer-udvidelses-CRX-fil

Download Last.FM Normalizer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Last.FM Normalizer Last.FM Normalizer
ID fgcgjpnojhfpkanpfichggjfboomocnd
Officiel URL https://chrome.google.com/webstore/detail/lastfm-normalizer/fgcgjpnojhfpkanpfichggjfboomocnd
Beskrivelse Normalizes Top Artist rankings by time spent listening instead of total plays.
Filstørrelse 23.95 KB
Antal Installationer 271
Nuværende Version 1.0.3
Senest Opdateret 2015-01-12
Udgivelsesdato 2015-01-12
Bedømmelse 2.92/5 Samlet 12 Bedømmelser
Udvikler hogueapps
Betalingsmetode free
Udvidelseswebsted http://github.com/mikehogue/lastfmnormalizer
Hjælpeside-URL http://github.com/mikehogue/lastfmnormalizer
Understøttede Sprog 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
}