ROBLOX Site Enhancer
Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.
Was ist ROBLOX Site Enhancer?
ROBLOX Site Enhancer ist eine Chrome-Erweiterung, die von TickerOfTime entwickelt wurde, und ihr Hauptmerkmal ist "Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.".
Erweiterungsscreenshots
ROBLOX Site Enhancer-Erweiterungs-CRX-Datei herunterladen
Laden Sie ROBLOX Site Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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". Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hppmmojgoomcelgjdbfbpjiiiheijjci |
| Offizielle URL | https://chrome.google.com/webstore/detail/roblox-site-enhancer/hppmmojgoomcelgjdbfbpjiiiheijjci |
| Beschreibung | Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website. |
| Dateigröße | 99.85 KB |
| Installationsanzahl | 4,000 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2015-11-14 |
| Veröffentlichungsdatum | 2015-11-14 |
| Bewertung | 3.55/5 Insgesamt 11 Bewertungen |
| Entwickler | TickerOfTime |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/*"
]
} | |