ROBLOX Site Enhancer

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

Что такое ROBLOX Site Enhancer?

ROBLOX Site Enhancer - это расширение Chrome, разработанное TickerOfTime, и его основная функция - "Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ROBLOX Site Enhancer

Скачайте файлы расширений ROBLOX Site Enhancer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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\/*"
    ]
}