AO3 Kudos-Per-Hit Ratios

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

¿Qué es AO3 Kudos-Per-Hit Ratios?

AO3 Kudos-Per-Hit Ratios es una extensión de Chrome desarrollada por Mooglegirl, y su función principal es "Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AO3 Kudos-Per-Hit Ratios

Descarga archivos de extensión AO3 Kudos-Per-Hit Ratios en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre AO3 Kudos-Per-Hit Ratios AO3 Kudos-Per-Hit Ratios
ID mablikfjjcoijicdhjcljoidaidfikpj
URL Oficial https://chrome.google.com/webstore/detail/ao3-kudos-per-hit-ratios/mablikfjjcoijicdhjcljoidaidfikpj
Descripción Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.
Tamaño del Archivo 15.72 KB
Cantidad de Instalaciones 378
Versión Actual 1.3.2
Última Actualización 2019-02-07
Fecha de Publicación 2019-02-07
Calificación 2.83/5 Total de 6 Calificaciones
Desarrollador Mooglegirl
Idiomas Soportados 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
    }
}