DuckDuckGo Enhancer

DuckItUp integrates search google button and movie rating system. Open-Source

What is DuckDuckGo Enhancer?

DuckDuckGo Enhancer is a Chrome extension developed by Sayak Sen, and its main feature is "DuckItUp integrates search google button and movie rating system. Open-Source".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download DuckDuckGo Enhancer Extension CRX File

Download DuckDuckGo Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        DuckDuckGo Enhancer or DuckItUp is an extension that provides few productive features for its users. DuckDuckGo is a very good search engine which respects users privacy. But it lacks some productive features. This extension aims to bridge that productivity gap.
This is an Open-Source Project - https://github.com/Sayak9495/DuckItUp

---------------------------
Why?
- Sometimes DuckDuckGo doesn't provide the desired result which forces users to move to google with the same search query. DuckDuckGo doesn't provide Movie or TV-Series ratings which is a bummer. Install DuckItUp to reduce your hassle until DuckDuckGo itself implements the features.

---------------------------
Productive Features - 
1. Dedicated Search Google button. [Redirects to google with the same search query]
2. Movie & TV-Series Ratings info gets integrated when searched for a movie. [like year of release, genre, run-time, IMDb/Rotten-Tomato/Metacritic ratings]
3. Shows Movie/Series Info even when DuckDuckGo doesn't detect the query as a valid movie/series. [Suffix such queries with movie/series and DuckItUp will integrate the movie/series info into the view. Ex- Cosmos series].
---------------------------
This is an Open-Source project, any contribution or suggestions is highly appreciated. And this extensions in no way related to official works of the DuckDuckGo team. This is an independent project.                    

Extension Basic Information

Name DuckDuckGo Enhancer DuckDuckGo Enhancer
ID jmmkhgopncnabnhkedjfbeappnhfecej
Official URL https://chromewebstore.google.com/detail/duckduckgo-enhancer/jmmkhgopncnabnhkedjfbeappnhfecej
Description DuckItUp integrates search google button and movie rating system. Open-Source
File Size 13.94 KB
Installation Count 804
Current Version 1.5
Last Updated 2022-10-16
Publish Date 2020-03-29
Rating 5.00/5 Total 4 Ratings
Developer Sayak Sen
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DuckDuckGo Enhancer",
    "version": "1.5",
    "description": "DuckItUp integrates search google button and movie rating system. Open-Source",
    "short_name": "DuckItUp",
    "author": "Sayak Sen",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/duckduckgo.com\/*",
                "https:\/\/safe.duckduckgo.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.omdbapi.com\/"
    ]
}