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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة RS Wiki RuneMetrics Logger
قم بتنزيل ملفات الامتداد RS Wiki RuneMetrics Logger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة سياسة الخصوصية | 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 } |