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”。
扩展截图
下载DuckDuckGo Enhancer扩展crx文件
下载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\/"
]
} | |