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 |
| Eメール | [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\/"
]
} | |