You've already forked tf2wikipricing
20 lines
444 B
JSON
Executable File
20 lines
444 B
JSON
Executable File
{
|
|
"name": EXTENSION_NAME,
|
|
"description": EXTENSION_DESCRIPTION,
|
|
"author": EXTENSION_AUTHOR,
|
|
"manifest_version": 3,
|
|
"version": EXTENSION_VERSION,
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://wiki.teamfortress.com/wiki/*"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"js": ["content/content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"48": "icons/icon-48.png",
|
|
"96": "icons/icon-96.png"
|
|
}
|
|
}
|