Twitter Background Restorer
Restores your own twitter background, instead of the horrible white one.
Twitter Background Restorerคืออะไร?
Twitter Background Restorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Autophagy และคุณลักษณะหลักของมันคือ "Restores your own twitter background, instead of the horrible white one."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Background Restorer
ดาวน์โหลดไฟล์ส่วนขยาย 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" } ] } |