init
This commit is contained in:
51
chrome-extension/manifest-v3.json
Normal file
51
chrome-extension/manifest-v3.json
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "RS Wiki Ely.gg Price Display",
|
||||
"version": "1.0",
|
||||
"description": "Displays item IDs from ely.gg on RuneScape Wiki pages",
|
||||
"permissions": [
|
||||
"storage"
|
||||
],
|
||||
"host_permissions": [
|
||||
"https://www.ely.gg/*",
|
||||
"http://*/*",
|
||||
"https://*/*"
|
||||
],
|
||||
"icons": {
|
||||
"48": "img/64.png",
|
||||
"96": "img/128.png"
|
||||
},
|
||||
"action": {
|
||||
"default_icon": "img/64.png",
|
||||
"default_title": "Configure Ely Extension",
|
||||
"default_popup": "options.html"
|
||||
},
|
||||
"background": {
|
||||
"service_worker": "background.js"
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [
|
||||
"https://runescape.wiki/*"
|
||||
],
|
||||
"js": [
|
||||
"content.js"
|
||||
],
|
||||
"run_at": "document_idle"
|
||||
}
|
||||
],
|
||||
"web_accessible_resources": [
|
||||
{
|
||||
"resources": [
|
||||
"new_data.json"
|
||||
],
|
||||
"matches": [
|
||||
"https://runescape.wiki/*"
|
||||
]
|
||||
}
|
||||
],
|
||||
"options_ui": {
|
||||
"page": "options.html",
|
||||
"open_in_tab": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user