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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}