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คืออะไร?
Show Last Topics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Show Last Topics
ดาวน์โหลดไฟล์ส่วนขยาย Show Last Topics ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ebhimbgllohbpidengigiocapjiahjgd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/show-last-topics/ebhimbgllohbpidengigiocapjiahjgd |
คำอธิบาย | This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name. |
ขนาดไฟล์ | 71.2 KB |
จำนวนการติดตั้ง | 14 |
เวอร์ชันปัจจุบัน | 2.1 |
อัปเดตครั้งล่าสุด | 2016-06-14 |
วันที่เผยแพร่ | 2016-06-14 |
คะแนน | 3.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" } ] } |