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.”。
扩展截图
下载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". 扩展基本信息
| 名称 | |
| 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\/*"
]
} | |