ROBLOX Site Enhancer

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

ROBLOX Site Enhancerとは何ですか?

ROBLOX Site EnhancerはTickerOfTimeによって開発されたChromeの拡張機能で、その主な機能は「Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

ROBLOX Site Enhancer拡張機能のCRXファイルをダウンロード

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