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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |