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开发的Chrome扩展程序,该扩展的主要功能是“Adds kudos-per-hit ratios to the stats of Archive of Our Own fics.”。
扩展截图
下载AO3 Kudos-Per-Hit Ratios扩展crx文件
下载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
}
} | |