ROBLOX Site Enhancer

Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.

What is ROBLOX Site Enhancer?

ROBLOX Site Enhancer is a Chrome extension developed by TickerOfTime, and its main feature is "Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download ROBLOX Site Enhancer Extension CRX File

Download ROBLOX Site Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension adds formatting and content embedding to the Roblox website. More details to come.

Formatting:
Bold: *Text*
Underline: --Text--
Strikethrough: ~Text~
Italic: _Text_
Snippet: `Code`
Block: ```Code (newlines supported)```
Imgur Picture: [imgr]{Imgurfilename.png}
Mention: @Username
Quote: > Text
Named link: [Name](Url)

Youtube links are embedded as videos, and urls are automatically parsed into links. You can toggle formatting by clicking the button marked "R++ On".                    

Extension Basic Information

Name ROBLOX Site Enhancer ROBLOX Site Enhancer
ID hppmmojgoomcelgjdbfbpjiiiheijjci
Official URL https://chrome.google.com/webstore/detail/roblox-site-enhancer/hppmmojgoomcelgjdbfbpjiiiheijjci
Description Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.
File Size 99.85 KB
Installation Count 4,000
Current Version 1.2
Last Updated 2015-11-14
Publish Date 2015-11-14
Rating 3.55/5 Total 11 Ratings
Developer TickerOfTime
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ROBLOX Site Enhancer",
    "short_name": "R++",
    "author": "TickerOfTime",
    "description": "Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.",
    "version": "1.2",
    "version_name": "1.0",
    "options_page": "options.html",
    "content_security_policy": "script-src 'self'; object-src 'self'; chrome-extension-resource 'unsafe-inline'",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "compact.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ],
            "css": [
                "style.css",
                "prettify.css"
            ],
            "js": [
                "jquery.min.js",
                "prettify.js",
                "lang-lua.js",
                "compact.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.roblox.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.roblox.com\/",
        "*:\/\/*.rbxcdn.com\/*",
        "cookies",
        "tabs",
        "declarativeContent",
        "notifications",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "*:\/\/*.roblox.com\/*",
        "*:\/\/*.rbxcdn.com\/*"
    ]
}