35 lines
682 B
JSON
35 lines
682 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "X Comment AI",
|
|
"version": "1.0.0",
|
|
"description": "Tạo comment cho X.com bằng AI của bạn",
|
|
"permissions": [
|
|
"contextMenus",
|
|
"storage"
|
|
],
|
|
"host_permissions": [
|
|
"https://x.com/*",
|
|
"https://twitter.com/*",
|
|
"https://api.yoursite.com/*"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://x.com/*",
|
|
"https://twitter.com/*"
|
|
],
|
|
"js": [
|
|
"content.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon.webp",
|
|
"48": "icons/icon.webp",
|
|
"128": "icons/icon.webp"
|
|
}
|
|
} |