ROBLOX Site Enhancer

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

ROBLOX Site Enhancer क्या है?

ROBLOX Site Enhancer TickerOfTime द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ROBLOX Site Enhancer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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".                    

एक्सटेंशन की मूल जानकारी

नाम ROBLOX Site Enhancer ROBLOX Site Enhancer
ID hppmmojgoomcelgjdbfbpjiiiheijjci
आधिकारिक URL https://chrome.google.com/webstore/detail/roblox-site-enhancer/hppmmojgoomcelgjdbfbpjiiiheijjci
विवरण Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.
फ़ाइल का आकार 99.85 KB
स्थापना संख्या 4,000
वर्तमान संस्करण 1.2
अंतिम अपडेट 2015-11-14
प्रकाशन तिथि 2015-11-14
रेटिंग 3.55/5 कुल 11 रेटिंग्स
डेवलपर TickerOfTime
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
    ]
}