Remove Tweet Views
Removes the new tweet views from Twitter
Remove Tweet Viewsคืออะไร?
Remove Tweet Views เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://robin.software และคุณลักษณะหลักของมันคือ "Removes the new tweet views from Twitter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove Tweet Views
ดาวน์โหลดไฟล์ส่วนขยาย Remove Tweet Views ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Removes the newly added impressions on every tweet and brings back the Twitter Bird
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dokodkdpdbcmhopjooolcchokhmehiki |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-tweet-views/dokodkdpdbcmhopjooolcchokhmehiki |
คำอธิบาย | Removes the new tweet views from Twitter |
ขนาดไฟล์ | 21.65 KB |
จำนวนการติดตั้ง | 37 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2023-07-27 |
วันที่เผยแพร่ | 2022-12-24 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://robin.software |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://robin.software |
URL หน้าช่วยเหลือ | https://twitter.com/robin__software |
URL หน้านโยบายความเป็นส่วนตัว | https://robin.software/imprint |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "$schema": "https:\/\/developer.chrome.com\/extensions\/manifest_v3.json", "name": "Remove Tweet Views", "description": "Removes the new tweet views from Twitter", "version": "0.0.3", "icons": { "16": "logo\/icon-16.png", "48": "logo\/icon-48.png", "128": "logo\/icon-128.png" }, "options_page": "settings\/settings.html", "action": { "default_title": "Remove Tweet Views", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ { "resources": [ "badgeHandler.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "permissions": [ "storage" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ] } |