Files
spectral-display/chrome-extension/manifest.json
Yorgei 1c28778a1c
Some checks failed
Update Data / update-data (push) Has been cancelled
update: update ver num
2026-01-18 15:08:43 +10:00

50 lines
1.0 KiB
JSON

{
"manifest_version": 2,
"name": "Spectral RS Wiki Price Display",
"version": "1.0",
"description": "Displays item IDs from ely.gg on RuneScape Wiki pages.",
"browser_specific_settings": {
"gecko": {
"id": "spectral-wiki-price@ely.gg",
"strict_min_version": "140.0",
"data_collection_permissions": {
"technicalAndInteractionData": false,
"locationData": false
}
}
},
"permissions": [
"storage",
"https://www.ely.gg/*",
"https://*/*",
"http://*/*"
],
"icons": {
"64": "img/64.png",
"128": "img/128.png"
},
"browser_action": {
"default_icon": "img/64.png",
"default_title": "Configure Spectral 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"
]
}