RS Wiki RuneMetrics Logger

A chrome extension for the RS Wiki RuneMetrics logger project

What is RS Wiki RuneMetrics Logger?

RS Wiki RuneMetrics Logger is a Chrome extension developed by HDR, and its main feature is "A chrome extension for the RS Wiki RuneMetrics logger project".

Extension Screenshots

screenshot

Download RS Wiki RuneMetrics Logger Extension CRX File

Download RS Wiki RuneMetrics Logger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name RS Wiki RuneMetrics Logger RS Wiki RuneMetrics Logger
ID fjobglimbajmmfhoebbdipiodedaipfj
Official URL https://chromewebstore.google.com/detail/rs-wiki-runemetrics-logge/fjobglimbajmmfhoebbdipiodedaipfj
Description A chrome extension for the RS Wiki RuneMetrics logger project
File Size 80.24 KB
Installation Count 34
Current Version 1.1
Last Updated 2019-10-28
Publish Date 2019-10-28
Rating 5.00/5 Total 1 Ratings
Developer HDR
Email [email protected]
Payment Type free
Extension Website https://github.com/HDR/RSWiki-Runemetrics-Extension
Privacy Policy Page URL https://github.com/MrHDR/RSWiki-Runemetrics-Extension/blob/master/Privacy%20Policy.md
Supported Languages 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
}