A tool to extract Google suggestions based on keywords
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Keyword Suggestion Tool",
"description": "A professional tool to extract Google suggestions based on keywords with advanced features.",
"version": "3.24.0",
"permissions": [
"activeTab",
"storage",
"alarms",
"notifications",
"https://suggestqueries.google.com/*",
"https://www.evjaj.com/*"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"web_accessible_resources": [
"css/*",
"images/*",
"js/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'; connect-src 'self' https://suggestqueries.google.com https://www.evjaj.com",
"browser_specific_settings": {
"gecko": {
"id": "keyword-suggestion-tool@evjaj.com",
"strict_min_version": "91.0"
}
}
}