twitter-view-count-remover
Ultra simple browser extension that removes view count from tweets.
twitter-view-count-removerคืออะไร?
twitter-view-count-remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fernando de la Rosa และคุณลักษณะหลักของมันคือ "Ultra simple browser extension that removes view count from tweets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย twitter-view-count-remover
ดาวน์โหลดไฟล์ส่วนขยาย twitter-view-count-remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple browser extension that removes view count from tweets. Easily remove view counts from tweets, no more comparing yourself to the Twitter elite, no more feeling like your tweets are falling into the abyss of the internet. Try it now! Source code is available at: https://github.com/jfdelarosa/twitter-view-count-remover CHANGELOG v1.3 - Fixed a bug that does not allow to open the more options menu in own tweets v1.2 - Added the possibility to show or hide the counter via a toggle v1.1 - Added support for mobile.twitter.com domain v1.0 - Initial release
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | twitter-view-count-remover |
ID | kacedphpmelngnhgodfbnemedkbbiajj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitter-view-count-remove/kacedphpmelngnhgodfbnemedkbbiajj |
คำอธิบาย | Ultra simple browser extension that removes view count from tweets. |
ขนาดไฟล์ | 11.94 KB |
จำนวนการติดตั้ง | 1,485 |
เวอร์ชันปัจจุบัน | 1.3.0 |
อัปเดตครั้งล่าสุด | 2023-01-05 |
วันที่เผยแพร่ | 2022-12-24 |
คะแนน | 4.70/5 รวมทั้งหมด 23 คะแนน |
ผู้พัฒนา | Fernando de la Rosa |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/jfdelarosa |
URL หน้าช่วยเหลือ | https://twitter.com/jfdelarosa |
URL หน้านโยบายความเป็นส่วนตัว | https://www.lunanotes.io/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "jfdelarosa", "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ], "run_at": "document_end" } ], "description": "Ultra simple browser extension that removes view count from tweets.", "manifest_version": 3, "name": "twitter-view-count-remover", "permissions": [ "storage", "tabs" ], "version": "1.3.0", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png" }, "default_popup": "popup.html" } } |