Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Instant Word Definition",
"version": "1.2",
"description": "Click on a word to get its definition instantly, now with audio pronunciation and Google Search.",
"icons": {
"48": "icon.png"
},
"permissions": [],
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icon.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"popup.html",
"popup.js"
],
"matches": [
"<all_urls>"
]
}
]
}