Remove Tweet Views
Removes the new tweet views from Twitter
Remove Tweet Viewsとは何ですか?
Remove Tweet Viewsはhttps://robin.softwareによって開発されたChromeの拡張機能で、その主な機能は「Removes the new tweet views from Twitter」です。
拡張機能のスクリーンショット
Remove Tweet Views拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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\/*" ] } ] } |