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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mooglegirl, και η κύρια λειτουργία του είναι "Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AO3 Kudos-Per-Hit Ratios
Λήψη αρχείων επέκτασης AO3 Kudos-Per-Hit Ratios σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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 } } |