FakeLookTwitterChromeExtension
Make your Twitter look like Slack
What is FakeLookTwitterChromeExtension?
FakeLookTwitterChromeExtension is a Chrome extension developed by nya3_neko2, and its main feature is "Make your Twitter look like Slack".
Extension Screenshots
Download FakeLookTwitterChromeExtension Extension CRX File
Download FakeLookTwitterChromeExtension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Twitterの見た目をチャットのような見た目に変更する拡張機能です。これを利用することでツイッターをよりシンプルに楽しむことができ、様々な情報を厳選して取得でき、集中力を高めます。 拡張のアイコンでON/OFFの切り替えができます。 ※ デザインを正常に利用するにはTwitterの表示デザインをブラックを選択してください。
Extension Basic Information
Name | |
ID | dncgbpnoglgdnigmalleleelehdblloc |
Official URL | https://chromewebstore.google.com/detail/fakelooktwitterchromeexte/dncgbpnoglgdnigmalleleelehdblloc |
Description | Make your Twitter look like Slack |
File Size | 110 KB |
Installation Count | 53 |
Current Version | 1.1.4 |
Last Updated | 2023-02-10 |
Publish Date | 2023-01-27 |
Developer | nya3_neko2 |
[email protected] | |
Payment Type | free |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FakeLookTwitterChromeExtension", "version": "1.1.4", "description": "Make your Twitter look like Slack", "manifest_version": 3, "icons": { "16": "asset\/logo16.png", "48": "asset\/logo48.png", "128": "asset\/logo128.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "js\/jquery-3.6.3.min.js", "js\/content.js" ], "exclude_matches": [ "https:\/\/twitter.com\/messages" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "html\/*.html", "css\/*.css", "asset\/*.png", "asset\/*.jpg" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": [] } |