Impression Counter
Count the total activity of selected tweets.
Impression Counterとは何ですか?
Impression Counterはhttp://slogansocial.comによって開発されたChromeの拡張機能で、その主な機能は「Count the total activity of selected tweets.」です。
拡張機能のスクリーンショット
Impression Counter拡張機能のCRXファイルをダウンロード
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" ] } ] } |