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はUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.」です。
拡張機能のスクリーンショット
Show Last Topics拡張機能のCRXファイルをダウンロード
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" } ] } |