Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tailwind CSS Inspector: Color Picker & Contrast",
"version": "1.0.0",
"description": "Extract colors and images, generate Tailwind CSS palettes, check WCAG contrast ratios, and inspect elements in real-time.",
"permissions": [
"activeTab",
"sidePanel",
"storage",
"scripting",
"tabs",
"debugger"
],
"host_permissions": [
"https:\/\/huestack.dev\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"utils\/colorUtils.js",
"utils\/colorExtraction.js",
"content.js",
"inspector\/inspector.js"
],
"css": [
"content.css",
"inspector\/inspector.css"
],
"run_at": "document_idle"
}
],
"side_panel": {
"default_path": "sidepanel\/sidepanel.html"
},
"action": {
"default_title": "Open HueStack Color Picker",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"externally_connectable": {
"matches": [
"https:\/\/huestack.dev\/*"
]
}
}