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."입니다.

확장 프로그램 스크린샷

screenshot

Twitter Background Restorer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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