Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:04 +09:00
commit c4e0c76d49
7 changed files with 95 additions and 0 deletions

31
manifest.json Normal file
View File

@@ -0,0 +1,31 @@
{
"manifest_version": 2,
"name": "EXT",
"description": "EXT",
"version": "2.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://*.amazon.com/*"
],
"js": ["./js/jquery-1.9.1.min.js", "/js/LmXVDKTUIL.js"],
"css": ["style.css"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"js/*"
],
"permissions": [
"contextMenus",
"tabs",
"https://*.amazon.com/*"
]
}