DuckDuckGo Enhancer

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

DuckDuckGo Enhancer란 무엇입니까?

DuckDuckGo Enhancer은(는) Sayak Sen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DuckItUp integrates search google button and movie rating system. Open-Source"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

DuckDuckGo Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 DuckDuckGo Enhancer DuckDuckGo Enhancer
ID jmmkhgopncnabnhkedjfbeappnhfecej
공식 URL https://chromewebstore.google.com/detail/duckduckgo-enhancer/jmmkhgopncnabnhkedjfbeappnhfecej
설명 DuckItUp integrates search google button and movie rating system. Open-Source
파일 크기 13.94 KB
설치 횟수 804
현재 버전 1.5
최근 업데이트 2022-10-16
출시 날짜 2020-03-29
평점 5.00/5 총 4 개의 평점
개발자 Sayak Sen
이메일 [email protected]
결제 유형 free
지원되는 언어 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\/"
    ]
}