AO3 Kudos-Per-Hit Ratios

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

AO3 Kudos-Per-Hit Ratios क्या है?

AO3 Kudos-Per-Hit Ratios Mooglegirl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds kudos-per-hit ratios to the stats of Archive of Our Own fics."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AO3 Kudos-Per-Hit Ratios एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम AO3 Kudos-Per-Hit Ratios AO3 Kudos-Per-Hit Ratios
ID mablikfjjcoijicdhjcljoidaidfikpj
आधिकारिक URL https://chrome.google.com/webstore/detail/ao3-kudos-per-hit-ratios/mablikfjjcoijicdhjcljoidaidfikpj
विवरण Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.
फ़ाइल का आकार 15.72 KB
स्थापना संख्या 378
वर्तमान संस्करण 1.3.2
अंतिम अपडेट 2019-02-07
प्रकाशन तिथि 2019-02-07
रेटिंग 2.83/5 कुल 6 रेटिंग्स
डेवलपर Mooglegirl
समर्थित भाषाएँ 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
    }
}