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" } ] } |