RS Wiki RuneMetrics Logger

A chrome extension for the RS Wiki RuneMetrics logger project

RS Wiki RuneMetrics Loggerคืออะไร?

RS Wiki RuneMetrics Logger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HDR และคุณลักษณะหลักของมันคือ "A chrome extension for the RS Wiki RuneMetrics logger project"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RS Wiki RuneMetrics Logger

ดาวน์โหลดไฟล์ส่วนขยาย RS Wiki RuneMetrics Logger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}