25 lines
438 B
JSON
25 lines
438 B
JSON
{
|
|
"name": "folk-canvas-extension",
|
|
"version": "1.0.0",
|
|
"manifest_version": 2,
|
|
"background": {
|
|
"service_worker": "background.ts"
|
|
},
|
|
"options_page": "options.html",
|
|
"web_accessible_resources": [
|
|
"injected.ts"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"contentScript.ts"
|
|
]
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_title": "Add Folk Canvas"
|
|
}
|
|
} |