CapProj's picture
Upload 25 files
5dec17e verified
raw
history blame contribute delete
393 Bytes
{
"manifest_version": 3,
"name": "ATS AutoFill",
"version": "1.0",
"permissions": ["activeTab", "storage"],
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": ["content.js"]
}]
}