RS Wiki RuneMetrics Logger

A chrome extension for the RS Wiki RuneMetrics logger project

Apa itu RS Wiki RuneMetrics Logger?

RS Wiki RuneMetrics Logger adalah ekstensi Chrome yang dikembangkan oleh HDR, dan fitur utamanya adalah "A chrome extension for the RS Wiki RuneMetrics logger project".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi RS Wiki RuneMetrics Logger

Unduh file ekstensi RS Wiki RuneMetrics Logger dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama RS Wiki RuneMetrics Logger RS Wiki RuneMetrics Logger
ID fjobglimbajmmfhoebbdipiodedaipfj
URL Resmi https://chromewebstore.google.com/detail/rs-wiki-runemetrics-logge/fjobglimbajmmfhoebbdipiodedaipfj
Deskripsi A chrome extension for the RS Wiki RuneMetrics logger project
Ukuran File 80.24 KB
Jumlah Instalasi 34
Versi Saat Ini 1.1
Terakhir Diperbarui 2019-10-28
Tanggal Publikasi 2019-10-28
Penilaian 5.00/5 Total 1 Penilaian
Pengembang HDR
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/HDR/RSWiki-Runemetrics-Extension
URL Halaman Kebijakan Privasi https://github.com/MrHDR/RSWiki-Runemetrics-Extension/blob/master/Privacy%20Policy.md
Bahasa yang Didukung 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
}