Show Last Topics
This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.
Show Last Topics là gì?
Show Last Topics là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.".
Ả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 Show Last Topics
Tải xuống các tệp mở rộng Show Last Topics 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
Blockland Forums provides no way to view all of a user's topics in one place. This extension fixes that issue by adding an option at the bottom of all profile pages. When this option is clicked, a list of all the user's topics will appear on the same page with options to sort by date, topic name, and board name.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ebhimbgllohbpidengigiocapjiahjgd |
URL Chính Thức | https://chromewebstore.google.com/detail/show-last-topics/ebhimbgllohbpidengigiocapjiahjgd |
Mô tả | This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name. |
Kích Thước Tệp | 71.2 KB |
Số Lần Cài Đặt | 14 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2016-06-14 |
Ngày Phát Hành | 2016-06-14 |
Đánh Giá | 3.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show Last Topics", "description": "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.", "version": "2.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "https:\/\/forum.blockland.us\/" ], "content_scripts": [ { "matches": [ "https:\/\/forum.blockland.us\/index.php?action=profile*" ], "exclude_matches": [ "https:\/\/forum.blockland.us\/*sa=*" ], "js": [ "jquery-1.11.1.min.js", "topicsLink.js" ], "run_at": "document_idle" } ] } |