AO3 Kudos-Per-Hit Ratios

Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.

Co to jest AO3 Kudos-Per-Hit Ratios?

AO3 Kudos-Per-Hit Ratios to rozszerzenie Chrome opracowane przez Mooglegirl, a jego główną funkcją jest „Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AO3 Kudos-Per-Hit Ratios

Pobierz pliki rozszerzeń AO3 Kudos-Per-Hit Ratios w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Shows you a percentage of how many of its readers gave it kudos to the stats section of all Archive of Our Own fics, right after the Hits count. Also includes a customizable bar for a nice visual of how the fics stack up. This way you can easily compare the quality of different fics, no matter how many views they have.

Note: Doesn't work for fics that have either Kudos or Hits hidden.                    

Podstawowe informacje o rozszerzeniu

Nazwa AO3 Kudos-Per-Hit Ratios AO3 Kudos-Per-Hit Ratios
ID mablikfjjcoijicdhjcljoidaidfikpj
Oficjalny URL https://chrome.google.com/webstore/detail/ao3-kudos-per-hit-ratios/mablikfjjcoijicdhjcljoidaidfikpj
Opis Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.
Rozmiar pliku 15.72 KB
Liczba instalacji 378
Aktualna Wersja 1.3.2
Ostatnia Aktualizacja 2019-02-07
Data Publikacji 2019-02-07
Ocena 2.83/5 Łącznie 6 Oceny
Deweloper Mooglegirl
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AO3 Kudos-Per-Hit Ratios",
    "version": "1.3.2",
    "description": "Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.archiveofourown.org\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}