Files
spectral-display/chrome-extension/manifest-firefox.json
Yorgei e23ac642a7 init
2026-01-18 14:29:12 +10:00

38 lines
744 B
JSON

{
"manifest_version": 2,
"name": "RS Wiki Ely.gg Price Display",
"version": "1.0",
"description": "Displays item IDs from ely.gg on RuneScape Wiki pages",
"permissions": [
"storage",
"https://www.ely.gg/*"
],
"icons": {
"48": "img/64.png",
"96": "img/128.png"
},
"browser_action": {
"default_icon": "img/64.png",
"default_title": "Configure Ely Extension",
"default_popup": "options.html"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://runescape.wiki/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"new_data.json"
]
}