34 lines
722 B
JSON
34 lines
722 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Keyword Grabber",
|
|
"version": "1.0",
|
|
"description": "Extract keywords from Google Keyword Planner and SEMRush",
|
|
"permissions": [
|
|
"activeTab",
|
|
"clipboardWrite",
|
|
"*://*.google.com/*",
|
|
"*://*.semrush.com/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://ads.google.com/*"],
|
|
"js": ["shared-ui.js", "content-script.js"]
|
|
},
|
|
{
|
|
"matches": ["*://*.semrush.com/*"],
|
|
"js": ["shared-ui.js", "semrush-content-script.js"]
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"icons": {
|
|
"48": "icon48.png",
|
|
"96": "icon96.png"
|
|
}
|
|
}
|