remove-twitter-trends
Switches Twitter trending topics off
Vad är remove-twitter-trends?
remove-twitter-trends är en Chrome-tillägg utvecklad av Andre Alves Garzia, och dess huvudfunktion är "Switches Twitter trending topics off".
Tilläggsskärmbilder
Ladda ner remove-twitter-trends-förlängningens CRX-fil
Ladda ner remove-twitter-trends-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience. Grundläggande Information om Tillägg
| Namn | |
| ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
| Officiell webbadress | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
| Beskrivning | Switches Twitter trending topics off |
| Filstorlek | 1.45 MB |
| Antal Installationer | 918 |
| Aktuell Version | 1.0.1 |
| Senast Uppdaterad | 2021-12-31 |
| Publiceringsdatum | 2021-12-31 |
| Betyg | 3.43/5 Totalt 7 Betyg |
| Utvecklare | Andre Alves Garzia |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "remove-twitter-trends",
"description": "Switches Twitter trending topics off",
"version": "1.0.1",
"icons": {
"64": "icons\/icon512.png"
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"css": [
"style.css"
],
"js": [
"browser-polyfill.js",
"mithril.js",
"content_script.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options\/index.html"
},
"permissions": [
"webNavigation",
"storage"
]
} | |