mirror of
https://github.com/ItsVipra/ProToots
synced 2024-11-26 21:40:22 +00:00
42 lines
901 B
JSON
42 lines
901 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"
|
|
}
|
|
}
|
|
|
|
}
|