ROBLOX Forums+

Adds formatting and numbering of ROBLOX posts

什么是ROBLOX Forums+?

ROBLOX Forums+是由L2000开发的Chrome扩展程序,该扩展的主要功能是“Adds formatting and numbering of ROBLOX posts”。

扩展截图

screenshot
screenshot
screenshot

下载ROBLOX Forums+扩展crx文件

下载ROBLOX Forums+扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The new version is out!

Adds formatting to ROBLOX posts. Also numbers each post made on the forums and adds other mini features, such as a way to open trades straight from the forums without going to the player's profile.

The extension also allows use of bolding, italics, underlines, strikeouts, and font styling (Font family, font size, and font color).

Also now has support for youtube videos, items, and acronyms; when moused over, will place an image / video in the post and provides a link to the video / item.

More features being worked on continuously.                    

扩展基本信息

名称 ROBLOX Forums+ ROBLOX Forums+
ID amfepecmobgaflidkebmofbgdgkgpman
官方URL https://chromewebstore.google.com/detail/roblox-forums+/amfepecmobgaflidkebmofbgdgkgpman
简介 Adds formatting and numbering of ROBLOX posts
文件大小 447 KB
安装次数 3,910
当前版本 1.0.7
更新时间 2014-08-31
上架时间 2014-08-30
评分 3.50/5 共16次评分
开发者 L2000
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ROBLOX Forums+",
    "short_name": "Forums+",
    "description": "Adds formatting and numbering of ROBLOX posts",
    "version": "1.0.7",
    "icons": {
        "16": "Icons\/icon16.png",
        "48": "Icons\/icon48.png",
        "128": "Icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "http:\/\/*.imgur.com\/*",
        "http:\/\/nekofont.upat.jp\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.roblox.com\/Forum\/ShowPost.aspx?PostID=*",
                "http:\/\/www.roblox.com\/Forum\/ShowForum.aspx?ForumID=*",
                "http:\/\/www.roblox.com\/Forum\/User\/MyForums.aspx",
                "http:\/\/www.roblox.com\/Forum\/AddPost.aspx?*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "acronyms.js",
                "objects.js",
                "forums.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.roblox.com\/my\/account*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "objects.js",
                "settings.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Forums+",
        "default_icon": "Icons\/icon16.png",
        "default_popup": "options.html"
    },
    "web_accessible_resources": [
        "Images\/*",
        "fonts\/*"
    ]
}