Impression Counter
Count the total activity of selected tweets.
Impression Counterคืออะไร?
Impression Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://slogansocial.com และคุณลักษณะหลักของมันคือ "Count the total activity of selected tweets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Impression Counter
ดาวน์โหลดไฟล์ส่วนขยาย Impression Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Select multiple tweets to see their total impressions, engagements, and URL clicks. Click the extension icon in the top right to start selecting. *Must have Twitter analytics turned on* TIP: Select a tweet and shit+select a tweet below it to auto select all tweets in between!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | okdfhnhmohlnbmhikficilhigmjlaofd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/impression-counter/okdfhnhmohlnbmhikficilhigmjlaofd |
คำอธิบาย | Count the total activity of selected tweets. |
ขนาดไฟล์ | 39.02 KB |
จำนวนการติดตั้ง | 27 |
เวอร์ชันปัจจุบัน | 1.4.1 |
อัปเดตครั้งล่าสุด | 2018-01-29 |
วันที่เผยแพร่ | 2018-01-29 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | http://slogansocial.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Impression Counter", "description": "Count the total activity of selected tweets.", "version": "1.4.1", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "content.css" ] } ] } |