This commit is contained in:
NAME
2026-05-15 10:02:53 +00:00
parent 65768643e0
commit a00f220940
6 changed files with 316 additions and 5 deletions
+35
View File
@@ -0,0 +1,35 @@
{
"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"
}
}