RS Wiki RuneMetrics Logger

A chrome extension for the RS Wiki RuneMetrics logger project

RS Wiki RuneMetrics Logger란 무엇입니까?

RS Wiki RuneMetrics Logger은(는) HDR에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for the RS Wiki RuneMetrics logger project"입니다.

확장 프로그램 스크린샷

screenshot

RS Wiki RuneMetrics Logger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extension version of the RS Wiki Runemetrics logger

Grabs drop data from Runescape's runemetrics page and uploads them to the Runescape wiki servers to give more accurate drop rates on the official runescape wiki.

Script source: https://pastebin.com/raw/nrXbNiAH

The original script belongs to the Runescape wiki, the data on drops and kills is sent to their servers, you can read their privacy policy here: https://weirdgloop.org/privacy/                    

확장 프로그램 기본 정보

이름 RS Wiki RuneMetrics Logger RS Wiki RuneMetrics Logger
ID fjobglimbajmmfhoebbdipiodedaipfj
공식 URL https://chromewebstore.google.com/detail/rs-wiki-runemetrics-logge/fjobglimbajmmfhoebbdipiodedaipfj
설명 A chrome extension for the RS Wiki RuneMetrics logger project
파일 크기 80.24 KB
설치 횟수 34
현재 버전 1.1
최근 업데이트 2019-10-28
출시 날짜 2019-10-28
평점 5.00/5 총 1 개의 평점
개발자 HDR
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/HDR/RSWiki-Runemetrics-Extension
개인정보 보호 정책 페이지 URL https://github.com/MrHDR/RSWiki-Runemetrics-Extension/blob/master/Privacy%20Policy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RS Wiki RuneMetrics Logger",
    "version": "1.1",
    "description": "A chrome extension for the RS Wiki RuneMetrics logger project",
    "browser_action": [],
    "permissions": [
        "tabs",
        "https:\/\/apps.runescape.com\/runemetrics\/app\/pvm-kills"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/apps.runescape.com\/runemetrics\/app\/pvm-kills"
            ],
            "js": [
                "jquery-3.3.1.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}