Search with Google Instead

You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.

Vad är Search with Google Instead?

Search with Google Instead är en Chrome-tillägg utvecklad av Alessandro Muraro, och dess huvudfunktion är "You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Search with Google Instead-förlängningens CRX-fil

Ladda ner Search with Google Instead-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension adds a nice blue button that performs the same search you just did on Google. No more copy/pasting your search query into google.com, this extension does it for you.                    

Grundläggande Information om Tillägg

Namn Search with Google Instead Search with Google Instead
ID cdfkjclhhojbgnpidbejchhklnjbjfhh
Officiell webbadress https://chromewebstore.google.com/detail/search-with-google-instea/cdfkjclhhojbgnpidbejchhklnjbjfhh
Beskrivning You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.
Filstorlek 16.67 KB
Antal Installationer 44
Aktuell Version 1.01
Senast Uppdaterad 2018-08-07
Publiceringsdatum 2018-08-07
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare Alessandro Muraro
Betalningssätt free
Tilläggswebbplats https://alexmuraro.me
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search with Google Instead",
    "short_name": "Google Instead",
    "version": "1.01",
    "description": "You use DuckDuckGo or Bing by default, yet sometimes you want to try the same search in Google? This extension is for you.",
    "author": "Alessandro Muraro",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/duckduckgo.com\/?*",
                "https:\/\/www.bing.com\/search?*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}