ReviewDB Twitter
Allows you to review other Twitter users
ReviewDB Twitterคืออะไร?
ReviewDB Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mantikafasi และคุณลักษณะหลักของมันคือ "Allows you to review other Twitter users"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ReviewDB Twitter
ดาวน์โหลดไฟล์ส่วนขยาย ReviewDB Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A extension which allows you to review other users. Anyone who has the extension will be able to see what you commented. Emoji artwork is based on flattened version of brain tweemoji (licensed under Creative Commons Attribution 4.0 International License. https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ReviewDB Twitter |
ID | kmgbgncbggoffjbefmnknffpofcajohj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj |
คำอธิบาย | Allows you to review other Twitter users |
ขนาดไฟล์ | 56.42 KB |
จำนวนการติดตั้ง | 88 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2023-06-06 |
วันที่เผยแพร่ | 2023-06-06 |
คะแนน | 3.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | mantikafasi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://reviewdb.mantikafasi.dev |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReviewDB Twitter", "version": "0.1.1", "description": "Allows you to review other Twitter users", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "bundle.js", "bundle.css" ], "matches": [ "https:\/\/twitter.com\/*" ] }, { "resources": [ "authpage.html" ], "matches": [ "https:\/\/manti.vendicated.dev\/*" ] } ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "run_at": "document_start", "js": [ "content.js" ] }, { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth*" ], "js": [ "auth.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "externally_connectable": { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth", "https:\/\/twitter.com\/*" ] } } |