mirror of
https://github.com/ItsVipra/ProToots
synced 2024-11-10 14:14:19 +00:00
34 lines
689 B
JSON
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"
|
|
}
|
|
}
|
|
}
|