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