Google Search Quick Custom Ranges

Grants ability to add additional quick date range searches with google search.

Co to jest Google Search Quick Custom Ranges?

Google Search Quick Custom Ranges to rozszerzenie Chrome opracowane przez gitnix, a jego główną funkcją jest „Grants ability to add additional quick date range searches with google search.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Search Quick Custom Ranges

Pobierz pliki rozszerzeń Google Search Quick Custom Ranges w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Allows additional quick date range searches to be added to google search.  Can be a handy if you need recent results but find the gap between a month and a year to be too jarring!                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Search Quick Custom Ranges Google Search Quick Custom Ranges
ID lambhmlkjmfghnccdpfnnlonmdghfipl
Oficjalny URL https://chrome.google.com/webstore/detail/google-search-quick-custo/lambhmlkjmfghnccdpfnnlonmdghfipl
Opis Grants ability to add additional quick date range searches with google search.
Rozmiar pliku 11.68 KB
Liczba instalacji 17
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2017-09-14
Data Publikacji 2017-09-14
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper gitnix
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gitnix/chrome-extension-google-search-custom-ranges
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Search Quick Custom Ranges",
    "version": "1.0.3",
    "description": "Grants ability to add additional quick date range searches with google search.",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search*"
            ],
            "js": [
                "searchRanges.js"
            ]
        }
    ]
}