Twitter Background Restorer

Restores your own twitter background, instead of the horrible white one.

Twitter Background Restorer क्या है?

Twitter Background Restorer Autophagy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Restores your own twitter background, instead of the horrible white one."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Background Restorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}