remove-twitter-trends
Switches Twitter trending topics off
remove-twitter-trends란 무엇입니까?
remove-twitter-trends은(는) Andre Alves Garzia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switches Twitter trending topics off"입니다.
확장 프로그램 스크린샷
remove-twitter-trends 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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. 확장 프로그램 기본 정보
| 이름 | |
| ID | pdbaomfhmpcbdabjpjfpoehhjnphdoac |
| 공식 URL | https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac |
| 설명 | Switches Twitter trending topics off |
| 파일 크기 | 1.45 MB |
| 설치 횟수 | 918 |
| 현재 버전 | 1.0.1 |
| 최근 업데이트 | 2021-12-31 |
| 출시 날짜 | 2021-12-31 |
| 평점 | 3.43/5 총 7 개의 평점 |
| 개발자 | Andre Alves Garzia |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | 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"
]
} | |