Roblox Themes

A ROBLOX chrome extension that allows users to pick custom colors for the website.

Roblox Themesคืออะไร?

Roblox Themes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raybipse และคุณลักษณะหลักของมันคือ "A ROBLOX chrome extension that allows users to pick custom colors for the website."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Roblox Themes

ดาวน์โหลดไฟล์ส่วนขยาย Roblox Themes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        "Roblox Themes" is an extension that allows users to create their own color themes for Roblox. The extension also contains default themes, such as "dark", which inherits the theme the from "Roblox Dark Mode" extension.

v.1.0.0.0: Official release! 
v.0.0.1.1: CSS fixes, popup fixes, and data fixes!
v0.0.1.0: Many bug fixes!
v0.0.0.9: CSS fixes
v0.0.0.8: CSS fixes
v0.0.0.7: Added new icon and make extension title beta
v.0.0.0.6: Fixed theme css not updating and text colors
v.0.0.0.5: Fixed adding new themes
v.0.0.0.4: Added new icons
v.0.0.0.3: Fixed major saving bugs, organized popup code
v.0.0.0.2: Adding popup
v.0.0.0.1: First public version, added CSS functionality

This is a beta version, please understand that the extension contains many bugs.

You can help this extension, report bugs via my discord: https://discord.gg/FXpCGW.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Roblox Themes Roblox Themes
ID bhnkonnaaipkhoaiakbcpcaolflgmnhl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/roblox-themes/bhnkonnaaipkhoaiakbcpcaolflgmnhl
คำอธิบาย A ROBLOX chrome extension that allows users to pick custom colors for the website.
ขนาดไฟล์ 1.1 MB
จำนวนการติดตั้ง 52,929
เวอร์ชันปัจจุบัน 1.0.0.0
อัปเดตครั้งล่าสุด 2021-06-18
วันที่เผยแพร่ 2019-07-01
คะแนน 4.01/5 รวมทั้งหมด 135 คะแนน
ผู้พัฒนา raybipse
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://discord.gg/FXpCGW
URL หน้าช่วยเหลือ https://discord.gg/FXpCGW
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "src\/scripts\/background.js"
        ]
    },
    "name": "Roblox Themes",
    "short_name": "RbxThemes",
    "version": "1.0.0.0",
    "description": "A ROBLOX chrome extension that allows users to pick custom colors for the website.",
    "author": "Ray",
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/www.roblox.com\/*",
        "https:\/\/www.roblox.com\/*",
        "http:\/\/web.roblox.com\/*",
        "https:\/\/web.roblox.com\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.roblox.com\/*",
                "http:\/\/web.roblox.com\/*",
                "https:\/\/www.roblox.com\/*",
                "https:\/\/web.roblox.com\/*"
            ],
            "js": [
                "src\/scripts\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "src\/resources\/images\/icon48.png",
        "default_title": "Roblox Themes",
        "default_popup": "src\/resources\/popup.html"
    },
    "icons": {
        "16": "src\/resources\/images\/icon16.png",
        "48": "src\/resources\/images\/icon48.png",
        "96": "src\/resources\/images\/icon96.png",
        "128": "src\/resources\/images\/icon128.png"
    },
    "web_accessible_resources": [
        "src\/resources\/styles\/main.css"
    ]
}