Unpaginate

Infinite scroll your favorite sites

Vad är Unpaginate?

Unpaginate är en Chrome-tillägg utvecklad av Esquire Marketing, och dess huvudfunktion är "Infinite scroll your favorite sites".

Tilläggsskärmbilder

screenshot

Ladda ner Unpaginate-förlängningens CRX-fil

Ladda ner Unpaginate-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

                        Tired of always clicking through tons of pages on Google, Amazon, YouTube & Bing?

Unpaginate allows you to infinitely scroll to the next page without having to click the next page and wait for it to load.

Save hundreds of hours a year with Unpaginate!                    

Grundläggande Information om Tillägg

Namn Unpaginate Unpaginate
ID oamcmjemlelkciemicfpmojnnblgniab
Officiell webbadress https://chromewebstore.google.com/detail/unpaginate/oamcmjemlelkciemicfpmojnnblgniab
Beskrivning Infinite scroll your favorite sites
Filstorlek 271 KB
Antal Installationer 20
Aktuell Version 3.0
Senast Uppdaterad 2019-01-02
Publiceringsdatum 2019-01-01
Utvecklare Esquire Marketing
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sendia.co/privacy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unpaginate",
    "description": "Infinite scroll your favorite sites",
    "version": "3.0",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_48.png",
            "32": "icons\/icon_128.png"
        },
        "default_title": "Unpaginate"
    },
    "content_scripts": [
        {
            "js": [
                "inject\/inject.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true,
        "chrome_style": true
    }
}