AO3 TrueRank

Adds a new non-searchable metric to AO3 works, describing their Kudos/Hits ratio.

AO3 TrueRank là gì?

AO3 TrueRank là một tiện ích mở rộng Chrome được phát triển bởi hujgup, và tính năng chính của nó là "Adds a new non-searchable metric to AO3 works, describing their Kudos/Hits ratio.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AO3 TrueRank

Tải xuống các tệp mở rộng AO3 TrueRank dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        It's hard to find the best works on AO3. You can search by kudos, but that tends to give preference to works with a lot of readers that may not necessarily be that good. On the other hand, if you search by hits, you get the most popular works, but as a lot of modern music is a testament to, popularity doesn't necessarily imply that a specific individual finds it of a high quality. Searching by comments or bookmarks generally doesn't work because not enough people use those features for them to be a large enough sample size. Plus, a single user can comment more than once on multi-chapter works, artificially inflating the status of those under that search metric.

So what is to be done? How can one, at a glance, determine the overall quality of a work?

Enter TrueRank. This extension takes the number of kudos a work has, divides it by the number of hits it has, and displays the resulting value as a percentage. For example, a work with 12 kudos and 96 hits will have a TrueRank of 12.5, because 12/96 = 1/8 = 0.125. This metric is better than any of the ones listed above because it doesn't give preference to popular works (excluding works with < ~10 hits), nor does it prefer multi-chapter works (each user can only leave 1 kudos, and hits are recorded per unique visitor). It's not perfect by any means, but it's a lot better than the tools we have now.

Unfortunately, due to the way AO3's search works, you cannot sort an entire body of works by their TrueRank, so for sorting purposes you're stuck with one of the built-in options. But this will very quickly let you know whether a work is (in general) going to be work your time to click on.

(Note: The red boxes in the screenshots are for highlighting purposes and do not appear during actual use.)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AO3 TrueRank AO3 TrueRank
ID oifgcehnomgkhcnmlccpbkdbamggbblo
URL Chính Thức https://chromewebstore.google.com/detail/ao3-truerank/oifgcehnomgkhcnmlccpbkdbamggbblo
Mô tả Adds a new non-searchable metric to AO3 works, describing their Kudos/Hits ratio.
Kích Thước Tệp 24.84 KB
Số Lần Cài Đặt 253
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-05-10
Ngày Phát Hành 2016-05-10
Đánh Giá 3.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển hujgup
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AO3 TrueRank",
    "version": "1.1",
    "description": "Adds a new non-searchable metric to AO3 works, describing their Kudos\/Hits ratio.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/archiveofourown.org\/*"
            ],
            "js": [
                "trueRank.js"
            ]
        }
    ]
}