Ecosia Dark-Mode

A Dark-mode extension for ecosia

Ecosia Dark-Mode क्या है?

Ecosia Dark-Mode Gaëtan M. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Dark-mode extension for ecosia"।

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

screenshot
screenshot

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

crx प्रारूप में Ecosia Dark-Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A simple chrome extension to activate a dark mode to the ecosia search engine. This extension allows to toggle a dark mode to the 'ecosia.org' site  and includes a "new tab" page in dark also.
Ecosia is a search engine that uses the profits generated by your online research to plant trees where the need is greatest. They have a free browser extension for you to save the planet: https://bit.ly/2xmtfVl

You simply have to install the chrome extension. In the extention popup, you can enable or disable the dark mode.
You will also find in this popup a google search box because Ecosia searches can sometimes be less relevant than Google searches. For more specific searches, you can therefore use this field. (But you won't plant a tree...:( )

Please feel free to offer me ideas or let me know about potential issues here: https://github.com/gmirmand/ecosia-dark-mode/issues 

To support me in the development of the extension: https://www.paypal.com/paypalme/gmirmand

Update logs:
v1.5.5 > 11/06/2022
    Fix some stylish issue due to ecosia update
v1.5.4 > 14/12/2021
    Fix some stylish issue due to ecosia update
v1.5.3 > 25/05/2021
    Fix some stylish issue due to ecosia update
v1.5.2 > 03/02/2021
    Refactoring and improvement of some features + donation button 🙊
v1.5.1 > 03/02/2021
    Hotfix issue
v1.4.1 > 16/07/2020
    Fix some stylish issue due to ecosia update
v1.4.0 > 11/03/2020
    Add a Google Analytics solution for usefull information retrieve (RGPD Free)
v1.3.2 > 09/03/2020
    Fix some stylish issue due to ecosia update
v1.3.1 > 30/11/2019
    Fix some stylish issue due to ecosia update
v1.3.0 > 04/11/2019
    Add french translation
v1.2.3 > 31/07/2019
    Fix some stylish issue due to ecosia update
v1.2.2 > 17/06/2019
    Fix some stylish issue due to ecosia update
v1.2.1 > 06/06/2019
    Fix some stylish issue due to ecosia update
v1.2.0 > 01/06/2019
    Add dark-mode to the 'new tab' page
v1.1.6 > 01/06/2019
    Fix some stylish issues
v1.1.5 > 09/04/2019
    Previously, we use the tabs function/permissions to retrieve the domain name. However, this requires the user to share his history which is bad. So here is a fix to do it in another way
v1.1.4 > 09/04/2019
    Alert message more relevant and a little graphic fix
v1.1.3 > 30/03/2019
    Blocking the extension (and user alerting) if we are not on ecosia.org domain
v1.1.2 > 28/03/2019
    Add preventive alerts
v1.1.1 > 24/03/2019
    Fix some stylish issue due to ecosia update
    Add a Google form in extension popup

We already have ideas such as:
>Switch to allow dark mode to activate itself from a certain time
>Propose to choose activation slots
>Choose the color variables

Feel free to consult the github to propose evolutions / improvements
https://github.com/gmirmand/ecosia-dark-mode                    

एक्सटेंशन की मूल जानकारी

नाम Ecosia Dark-Mode Ecosia Dark-Mode
ID lpgjbchlhnpodjjnemfpfajibnclknam
आधिकारिक URL https://chromewebstore.google.com/detail/ecosia-dark-mode/lpgjbchlhnpodjjnemfpfajibnclknam
विवरण A Dark-mode extension for ecosia
फ़ाइल का आकार 484 KB
स्थापना संख्या 25,394
वर्तमान संस्करण 1.5.5
अंतिम अपडेट 2022-06-14
प्रकाशन तिथि 2020-03-11
रेटिंग 4.34/5 कुल 110 रेटिंग्स
डेवलपर Gaëtan M.
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gmirmand.github.io/ecosia-dark-mode/
सहायता पृष्ठ URL https://twitter.com/Huroyy
गोपनीयता नीति पृष्ठ URL https://www.ecosia.gmirmand.fr/privacy-policy
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ecosia Dark-Mode",
    "version": "1.5.5",
    "description": "A Dark-mode extension for ecosia",
    "manifest_version": 2,
    "default_locale": "en",
    "browser_action": {
        "default_icon": {
            "16": "images\/logo-ecosia-dark-16.png",
            "32": "images\/logo-ecosia-dark-32.png",
            "48": "images\/logo-ecosia-dark-48.png",
            "64": "images\/logo-ecosia-dark-64.png",
            "128": "images\/logo-ecosia-dark-128.png"
        },
        "default_popup": "ecosia-dark-mode.html",
        "default_title": "Ecosia Dark-Mode"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ecosia.org\/*"
            ],
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/vendors.js",
                "js\/global.js",
                "js\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo-ecosia-dark-16.png",
        "32": "images\/logo-ecosia-dark-32.png",
        "48": "images\/logo-ecosia-dark-48.png",
        "64": "images\/logo-ecosia-dark-64.png",
        "128": "images\/logo-ecosia-dark-128.png"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "permissions": [
        "storage",
        "topSites",
        "https:\/\/www.google-analytics.com\/"
    ]
}