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": "Quick Dictionary Lookup",
"version": "1.1.2",
"description": "A simple and powerful Chrome extension that adds a right-click context menu to look up selected words in online dictionaries.",
"permissions": [
"contextMenus",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"js": [
"js\/content.js"
]
}
],
"action": {
"default_title": "Quick Dictionary Lookup",
"default_popup": "popup.html"
},
"icons": {
"16": "img\/icon.png",
"32": "img\/icon.png",
"128": "img\/icon.png"
}
}