ROBLOX Site Enhancer
Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.
ROBLOX Site Enhancer là gì?
ROBLOX Site Enhancer là một tiện ích mở rộng Chrome được phát triển bởi TickerOfTime, và tính năng chính của nó là "Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ROBLOX Site Enhancer
Tải xuống các tệp mở rộng ROBLOX Site Enhancer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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".
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hppmmojgoomcelgjdbfbpjiiiheijjci |
URL Chính Thức | https://chrome.google.com/webstore/detail/roblox-site-enhancer/hppmmojgoomcelgjdbfbpjiiiheijjci |
Mô tả | Adds features like syntax highlighting, markdown formatting, and forum muting to the Roblox website. |
Kích Thước Tệp | 99.85 KB |
Số Lần Cài Đặt | 4,000 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2015-11-14 |
Ngày Phát Hành | 2015-11-14 |
Đánh Giá | 3.55/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | TickerOfTime |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |