DuckDuckGo !bangs
Add DuckDuckGo bang buttons to search results and search links in the context menu.
Was ist DuckDuckGo !bangs?
DuckDuckGo !bangs ist eine Chrome-Erweiterung, die von Simon entwickelt wurde, und ihr Hauptmerkmal ist "Add DuckDuckGo bang buttons to search results and search links in the context menu.".
Erweiterungsscreenshots
DuckDuckGo !bangs-Erweiterungs-CRX-Datei herunterladen
Laden Sie DuckDuckGo !bangs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A chrome extension for making it easier to search using DuckDuckGo !bangs. DuckDuckGo is a search engine that does not track you. DuckDuckGo !bangs allow you to search on thousands of sites, directly. This extension add two functions. - Add !bang buttons to the DuckDuckGo search results page. - add context menu to search using DuckDuckGo !bangs for selected text. Supports 19 !bangs at the moment of over 9000 available.
Grundlegende Informationen zur Erweiterung
Name | |
ID | hdjfebkndhmegijlghjcdghdbealibeb |
Offizielle URL | https://chrome.google.com/webstore/detail/duckduckgo-bangs/hdjfebkndhmegijlghjcdghdbealibeb |
Beschreibung | Add DuckDuckGo bang buttons to search results and search links in the context menu. |
Dateigröße | 40.27 KB |
Installationsanzahl | 10,000 |
Aktuelle Version | 0.6.1 |
Letztes Update | 2017-04-23 |
Veröffentlichungsdatum | 2017-04-23 |
Bewertung | 4.19/5 Insgesamt 32 Bewertungen |
Entwickler | Simon |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/engwerda/chrome-duckduckgo-bangs |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DuckDuckGo !bangs", "description": "Add DuckDuckGo bang buttons to search results and search links in the context menu.", "version": "0.6.1", "author": "Simon Engwerda", "manifest_version": 2, "icons": { "16": "images\/duckduckgo-16.png", "48": "images\/duckduckgo-48.png", "128": "images\/duckduckgo-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "contextMenus", "storage" ], "options_ui": { "page": "options.html", "chrome_style": false }, "content_scripts": [ { "matches": [ "*:\/\/*.duckduckgo.com\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "omnibox": { "keyword": "dd" } } |