Infinite Search

Get Infinite scroll in google, youtube, yahoo, bing

Co to jest Infinite Search?

Infinite Search to rozszerzenie Chrome opracowane przez sarathisahoo, a jego główną funkcją jest „Get Infinite scroll in google, youtube, yahoo, bing”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Infinite Search

Pobierz pliki rozszerzeń Infinite Search 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

                        If you like infinite scroll in facebook, you will definitely like this add on.
It will add same feature for google,youtube,Yahoo Search and bing.
Search anything on these sites and you get new results as you scroll down, down and down.                    

Podstawowe informacje o rozszerzeniu

Nazwa Infinite Search Infinite Search
ID djfccodmdanlhchfeamajnhjjaafmabd
Oficjalny URL https://chrome.google.com/webstore/detail/infinite-search/djfccodmdanlhchfeamajnhjjaafmabd
Opis Get Infinite scroll in google, youtube, yahoo, bing
Rozmiar pliku 5.04 KB
Liczba instalacji 235
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-04-23
Data Publikacji 2018-04-23
Ocena 1.80/5 Łącznie 5 Oceny
Deweloper sarathisahoo
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Infinite Search",
    "version": "1.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Get Infinite scroll in google, youtube, yahoo, bing",
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "InfiniteSearch.js"
            ],
            "run_at": "document_start"
        }
    ]
}