ProToots/manifest.json
2023-05-25 15:37:24 +02:00

34 lines
689 B
JSON

{
"manifest_version": 2,
"name": "ProToots",
"version": "0.99",
"description": "puts pronouns next to usernames on mastodon",
"homepage_url": "https://github.com/ItsVipra/ProToots",
"permissions": ["storage"],
"browser_action": {
"default_icon": "src/icons/beasts-32.png",
"default_title": "ProToots",
"default_popup": "src/options/options.html"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["src/content_scripts/protoots.js"],
"css": ["src/styles/proplate.css"],
"run_at": "document_start"
}
],
"options_ui": {
"page": "src/options/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "protoots@trans.rights"
}
}
}