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."입니다.

확장 프로그램 스크린샷

screenshot

AO3 Kudos-Per-Hit Ratios 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 AO3 Kudos-Per-Hit Ratios AO3 Kudos-Per-Hit Ratios
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
    }
}