38 lines
812 B
JSON
38 lines
812 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Sua Extensão",
|
|
"version": "1.0",
|
|
"description": "Extensão para salvar posts do LinkedIn e gerar mensagens personalizadas.",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"contextMenus",
|
|
"tabs",
|
|
"https://launchr.com.br/*",
|
|
"https://api.openai.com/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"browser_action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Minha Extensão",
|
|
"default_icon": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://www.linkedin.com/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
} |