Travian Mark as Read at Top
This extension creates a button at the top of the reports page to mark them as read.
Travian Mark as Read at Top là gì?
Travian Mark as Read at Top là một tiện ích mở rộng Chrome được phát triển bởi mauricio.schmaedeck, và tính năng chính của nó là "This extension creates a button at the top of the reports page to mark them as read.".
Ả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 Travian Mark as Read at Top
Tải xuống các tệp mở rộng Travian Mark as Read at Top 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
Simple extension to create a button to mark reports as read at the top of the page (Travian)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Travian Mark as Read at Top |
ID | mnbgdlhdbebmpkminblfhgddfljenclo |
URL Chính Thức | https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo |
Mô tả | This extension creates a button at the top of the reports page to mark them as read. |
Kích Thước Tệp | 19.9 KB |
Số Lần Cài Đặt | 43 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2017-05-21 |
Ngày Phát Hành | 2017-05-21 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | mauricio.schmaedeck |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Travian Mark as Read at Top", "description": "This extension creates a button at the top of the reports page to mark them as read.", "version": "1.2", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "*:\/\/tx3.travian.com.br\/berichte.php" ], "content_scripts": [ { "matches": [ "*:\/\/tx3.travian.com.br\/berichte.php*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |