RS Wiki RuneMetrics Logger
A chrome extension for the RS Wiki RuneMetrics logger project
RS Wiki RuneMetrics Logger là gì?
RS Wiki RuneMetrics Logger là một tiện ích mở rộng Chrome được phát triển bởi HDR, và tính năng chính của nó là "A chrome extension for the RS Wiki RuneMetrics logger project".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RS Wiki RuneMetrics Logger
Tải xuống các tệp mở rộng RS Wiki RuneMetrics Logger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RS Wiki RuneMetrics Logger |
ID | fjobglimbajmmfhoebbdipiodedaipfj |
URL Chính Thức | https://chromewebstore.google.com/detail/rs-wiki-runemetrics-logge/fjobglimbajmmfhoebbdipiodedaipfj |
Mô tả | A chrome extension for the RS Wiki RuneMetrics logger project |
Kích Thước Tệp | 80.24 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2019-10-28 |
Ngày Phát Hành | 2019-10-28 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | HDR |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/HDR/RSWiki-Runemetrics-Extension |
URL Trang Chính Sách Bảo Mật | https://github.com/MrHDR/RSWiki-Runemetrics-Extension/blob/master/Privacy%20Policy.md |
Ngôn Ngữ Được Hỗ Trợ | 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 } |