twitter-view-count-remover
Ultra simple browser extension that removes view count from tweets.
twitter-view-count-removerとは何ですか?
twitter-view-count-removerはFernando de la Rosaによって開発されたChromeの拡張機能で、その主な機能は「Ultra simple browser extension that removes view count from tweets.」です。
拡張機能のスクリーンショット
twitter-view-count-remover拡張機能のCRXファイルをダウンロード
twitter-view-count-remover拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple browser extension that removes view count from tweets. Easily remove view counts from tweets, no more comparing yourself to the Twitter elite, no more feeling like your tweets are falling into the abyss of the internet. Try it now! Source code is available at: https://github.com/jfdelarosa/twitter-view-count-remover CHANGELOG v1.3 - Fixed a bug that does not allow to open the more options menu in own tweets v1.2 - Added the possibility to show or hide the counter via a toggle v1.1 - Added support for mobile.twitter.com domain v1.0 - Initial release
拡張機能の基本情報
名前 | twitter-view-count-remover |
ID | kacedphpmelngnhgodfbnemedkbbiajj |
公式URL | https://chromewebstore.google.com/detail/twitter-view-count-remove/kacedphpmelngnhgodfbnemedkbbiajj |
説明 | Ultra simple browser extension that removes view count from tweets. |
ファイルサイズ | 11.94 KB |
インストール数 | 1,485 |
現在のバージョン | 1.3.0 |
最終更新日 | 2023-01-05 |
公開日 | 2022-12-24 |
評価 | 4.70/5 合計 23 レビュー |
開発者 | Fernando de la Rosa |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://twitter.com/jfdelarosa |
ヘルプページのURL | https://twitter.com/jfdelarosa |
プライバシーポリシーページのURL | https://www.lunanotes.io/privacy-policy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "jfdelarosa", "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ], "run_at": "document_end" } ], "description": "Ultra simple browser extension that removes view count from tweets.", "manifest_version": 3, "name": "twitter-view-count-remover", "permissions": [ "storage", "tabs" ], "version": "1.3.0", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png" }, "default_popup": "popup.html" } } |