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 Scanly - Copy CSS | Tailwind & Bootstrap",
"version": "1.2",
"description": "Copy CSS properties from any web element with CSS Scanly. Supports Tailwind & Bootstrap, Helpful for developers and designers",
"permissions": [
"activeTab",
"clipboardWrite"
],
"action": {
"default_icon": {
"16": "icons\/icon16x.png",
"48": "icons\/icon48x.png",
"128": "icons\/icon128x.png"
}
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16x.png",
"48": "icons\/icon48x.png",
"128": "icons\/icon128x.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
]
}