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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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".
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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\/*" ] } |