Twitter Background Restorer
Restores your own twitter background, instead of the horrible white one.
Twitter Background Restorerとは何ですか?
Twitter Background RestorerはAutophagyによって開発されたChromeの拡張機能で、その主な機能は「Restores your own twitter background, instead of the horrible white one.」です。
拡張機能のスクリーンショット
Twitter Background Restorer拡張機能のCRXファイルをダウンロード
Twitter Background Restorer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A chrome extension that lets you set a custom background image and colour for web twitter. A nostalgic throwback to when the homepage wasn't a sea of searing white. Installation ============ Install from the Web Store and click on 'Options' below the extension. You can then upload an image and specify a colour. You can currently: Upload a custom image Set a custom background colour Specify whether the image tiles or not Specify whether the image stretches to cover the page or not. If you have any feature requests or ideas for improvement, please open an issue! Note: This is a purely local change. Other users cannot see the background you set, I'm afraid - this is only to re-implement homepage customisation that twitter has removed.
拡張機能の基本情報
名前 | Twitter Background Restorer |
ID | gcjejnlljikllkloanankijokfbaelhi |
公式URL | https://chromewebstore.google.com/detail/twitter-background-restor/gcjejnlljikllkloanankijokfbaelhi |
説明 | Restores your own twitter background, instead of the horrible white one. |
ファイルサイズ | 38.67 KB |
インストール数 | 3,135 |
現在のバージョン | 2.1.0 |
最終更新日 | 2019-04-04 |
公開日 | 2019-04-04 |
評価 | 4.33/5 合計 43 レビュー |
開発者 | Autophagy |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Autophagy/twitter-bg-restorer |
ヘルプページのURL | https://github.com/Autophagy/twitter-bg-restorer |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Background Restorer", "version": "2.1.0", "description": "Restores your own twitter background, instead of the horrible white one.", "author": "Mika (Autophagy)", "homepage_url": "https:\/\/github.com\/Autophagy\/twitter-bg-restorer", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "permissions": [ "http:\/\/*.twitter.com\/", "https:\/\/*.twitter.com\/", "unlimitedStorage", "storage" ], "options_page": "options\/options.html", "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*", "http:\/\/www.twitter.com\/*", "https:\/\/www.twitter.com\/*" ], "js": [ "content_script\/content_script.js" ], "run_at": "document_idle" } ] } |