DuckDuckGo Enhancer
DuckItUp integrates search google button and movie rating system. Open-Source
Что такое DuckDuckGo Enhancer?
DuckDuckGo Enhancer - это расширение Chrome, разработанное Sayak Sen, и его основная функция - "DuckItUp integrates search google button and movie rating system. Open-Source".
Снимки экрана расширения
Скачать файл CRX расширения DuckDuckGo Enhancer
Скачайте файлы расширений DuckDuckGo Enhancer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| 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\/"
]
} | |