Inspect and view changes in copy-figma-css source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "copy-figma-css",
"version": "1.0.11",
"action": {
"default_icon": "img/copy-figma-css-32.png",
"default_title": "copy-figma-css",
"default_popup": "index.html"
},
"description": "copy-figma-css",
"icons": {
"16": "img/copy-figma-css-16.png",
"48": "img/copy-figma-css-48.png",
"128": "img/copy-figma-css-128.png"
},
"content_scripts": [
{
"matches": [
"https://www.figma.com/design/*"
],
"js": [
"js/change-copy-css.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"clipboardWrite"
]
}