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": "WordWeaver",
"version": "1.0.4",
"description": "Highlight a word on any webpage to see synonyms and antonyms in a clean popup.",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"action": {
"default_title": "WordWeaver",
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
},
"permissions": [],
"host_permissions": [
"https:\/\/api.datamuse.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
}
]
}