remove-twitter-trends
Switches Twitter trending topics off
remove-twitter-trendsคืออะไร?
remove-twitter-trends เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andre Alves Garzia และคุณลักษณะหลักของมันคือ "Switches Twitter trending topics off"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย remove-twitter-trends
ดาวน์โหลดไฟล์ส่วนขยาย remove-twitter-trends ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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"
]
} | |