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.”。

扩展截图

screenshot
screenshot

下载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.                    

扩展基本信息

名称 Show Last Topics Show Last Topics
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"
        }
    ]
}