Twitter Cleaner
Removes annoying twitter boxes
Twitter Cleanerとは何ですか?
Twitter Cleanerはhttps://cavar.netによって開発されたChromeの拡張機能で、その主な機能は「Removes annoying twitter boxes」です。
拡張機能のスクリーンショット
Twitter Cleaner拡張機能のCRXファイルをダウンロード
Twitter Cleaner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Removes trending, who to follow and footer boxes. Report any issues here https://github.com/Palethorn/twitter_cleaner/issues
拡張機能の基本情報
名前 | |
ID | oocpmdgjlccdinophpbbkmfdjooflfac |
公式URL | https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac |
説明 | Removes annoying twitter boxes |
ファイルサイズ | 92.48 KB |
インストール数 | 50 |
現在のバージョン | 2.0.0 |
最終更新日 | 2019-11-21 |
公開日 | 2019-11-21 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://cavar.net |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Palethorn/twitter_cleaner |
ヘルプページのURL | https://github.com/Palethorn/twitter_cleaner/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Cleaner", "version": "2.0.0", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "description": "Removes annoying twitter boxes", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true } } |