accuracy / manifest.json
Soluses's picture
Upload 5 files
fdda2ab
raw
history blame
553 Bytes
{
"manifest_version": 2,
"name": "OnlyFans Metrics",
"version": "1.0",
"description": "Add metrics and insights to OnlyFans profiles",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"https://www.onlyfans.com/*",
"storage"
],
"content_scripts": [
{
"matches": ["https://www.onlyfans.com/*"],
"js": ["content.js"]
}
],
"browser_action": {
"default_icon": {
"16": "icon.png",
"48": "icon.png"
},
"default_popup": "popup.html"
}
}