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": "Keyword Auto Complete Magic",
"version": "1.0",
"description": "Get comprehensive A2Z autocomplete keyword suggestions for Google searches",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"*:\/\/suggestqueries.google.com\/*",
"*:\/\/www.google.com\/search*"
],
"action": {
"default_icon": {
"16": "icons\/icon.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/www.google.com\/search*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images\/logo.png",
"images\/logo2.png"
],
"matches": [
"<all_urls>"
]
}
]
}