RS Wiki RuneMetrics Logger

A chrome extension for the RS Wiki RuneMetrics logger project

Vad är RS Wiki RuneMetrics Logger?

RS Wiki RuneMetrics Logger är en Chrome-tillägg utvecklad av HDR, och dess huvudfunktion är "A chrome extension for the RS Wiki RuneMetrics logger project".

Tilläggsskärmbilder

screenshot

Ladda ner RS Wiki RuneMetrics Logger-förlängningens CRX-fil

Ladda ner RS Wiki RuneMetrics Logger-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn RS Wiki RuneMetrics Logger RS Wiki RuneMetrics Logger
ID fjobglimbajmmfhoebbdipiodedaipfj
Officiell webbadress https://chromewebstore.google.com/detail/rs-wiki-runemetrics-logge/fjobglimbajmmfhoebbdipiodedaipfj
Beskrivning A chrome extension for the RS Wiki RuneMetrics logger project
Filstorlek 80.24 KB
Antal Installationer 34
Aktuell Version 1.1
Senast Uppdaterad 2019-10-28
Publiceringsdatum 2019-10-28
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare HDR
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/HDR/RSWiki-Runemetrics-Extension
URL till Sekretesspolicy Sidan https://github.com/MrHDR/RSWiki-Runemetrics-Extension/blob/master/Privacy%20Policy.md
Stödda Språk 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
}