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
}
} | |