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": "CSS Seeker",
"version": "2.0.3.7",
"description": "Extract any CSS \/ Tailwind in one click",
"permissions": [
"sidePanel",
"scripting",
"activeTab",
"tabs",
"debugger"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_title": "Open Sidepanel"
},
"background": {
"service_worker": "background.js"
},
"side_panel": {
"default_path": "index.html"
},
"icons": {
"16": "cssseekerLogo.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"tailwindData.json"
],
"matches": [
"<all_urls>"
]
}
]
}