Twitter.com Optimized for Chrome
Just fixing some common performance bottleneck annoyances on Twitter.com. Enjoy smooth scrolling at 60FPS! #ThankMeLater
Twitter.com Optimized for Chromeとは何ですか?
Twitter.com Optimized for ChromeはReyHaynesによって開発されたChromeの拡張機能で、その主な機能は「Just fixing some common performance bottleneck annoyances on Twitter.com. Enjoy smooth scrolling at 60FPS! #ThankMeLater」です。
拡張機能のスクリーンショット
Twitter.com Optimized for Chrome拡張機能のCRXファイルをダウンロード
Twitter.com Optimized for Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Notice slow scrolling and bad performance while using Twitter.com?
Yea, me too...and it got to a point where I just wanted to fix it...
...download this Extension for better performance! 拡張機能の基本情報
| 名前 | |
| ID | pcjdkchmolbfddhnadplafncfeccjehi |
| 公式URL | https://chromewebstore.google.com/detail/twittercom-optimized-for/pcjdkchmolbfddhnadplafncfeccjehi |
| 説明 | Just fixing some common performance bottleneck annoyances on Twitter.com. Enjoy smooth scrolling at 60FPS! #ThankMeLater |
| ファイルサイズ | 7.89 KB |
| インストール数 | 757 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2013-09-05 |
| 公開日 | 2013-09-05 |
| 評価 | 4.83/5 合計 12 レビュー |
| 開発者 | ReyHaynes |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://twitter.com/ReyHaynes |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitter.com Optimized for Chrome",
"version": "1.0",
"manifest_version": 2,
"description": "Just fixing some common performance bottleneck annoyances on Twitter.com. Enjoy smooth scrolling at 60FPS! #ThankMeLater",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "icon-128.png"
},
"page_action": {
"default_icon": "icon-128.png"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/twitter.com\/*",
"https:\/\/twitter.com\/*"
],
"js": [
"please-optimize.js"
],
"run_at": "document_end"
}
]
} | |