Infy Scroll

Add customized infinite scrolling to websites and auto load the next page. Supports the AutoPagerize Database. (Beta)

¿Qué es Infy Scroll?

Infy Scroll es una extensión de Chrome desarrollada por Roy Six, y su función principal es "Add customized infinite scrolling to websites and auto load the next page. Supports the AutoPagerize Database. (Beta)".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Infy Scroll

Descarga archivos de extensión Infy Scroll en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Infy Scroll is an extension in beta that can auto-load the next page and let you add customized infinite scrolling to websites. It's also compatible with the AutoPagerize Database, which means it supports thousands of websites automatically. Infy supports 4 different actions and 6 different append modes so you can customize each site's infinite scrolling to how you want it to be. Infy understands both CSS Selector and XPath expressions for finding next links, and it features an Element Picker that can generate them for you, similar to the original AutoPager. It can also increment URLs and perform special actions, like clicking "Load More" buttons. You can save your settings for each URL and Infy will auto-activate the next time you visit them.

I want you to be 100% happy with Infy
If something isn't working right, or if there's a feature you think is missing, please feel free to open an issue on GitHub and give me a chance to fix it and I promise I will. Thank you so much for using Infy.

Features
- 4 Actions: Next Link, Click Element, Increment URL, URL List
- 6 Append Modes: Page (for simple websites), Iframe (for complex websites), Element (AutoPagerize Mode), Media (for images like 001.jpg), AJAX (for AJAX/SPA sites), and None (for sites that only require clicks)
- Paths: Infy understands CSS Selectors, XPath expressions, and JS Paths, and can auto-detect what type of path you are entering, or can be set to a fixed path type by toggling the label (SE/XP/JS)
- Element Picker: Pick an element on the page and generate its Selector or XPath expression automatically or use the EP's buttons to traverse the DOM in any direction (May not work on complex websites)
- Auto Detect (an innovative feature): Let Infy's algorithm try to detect the next link, page element, and click elements for you (May not work well on complex websites)
- Auto Mode: Automatically append pages, or use Slideshow Mode (supports Pause and Repeat)
- AJAX Support: Infy features two unique AJAX append modes: Iframe and Native (Experimental)
- SPA Support: Infy supports the Navigation API to detect navigation events and can use a MutationObserver to watch for changes on the page to provide compatibility with many complex AJAX and Single-page Application sites (Experimental)
- Save URLs: Infy can save custom site-specific settings and then auto-activate on your favorite URLs
- Database Support: Infy supports the AutoPagerize and InfyScroll Databases allowing it to support thousands of websites for you automatically
- Custom Scripts: Infy has custom scripts for a few popular websites (such as Google Search) that will try to fix missing image thumbnails
- Advanced Features: Fix lazy loading or use the Element Iframe mode to fix missing images
- User Interface: A simple UI custom built using Material Design
- Uses 0 Background Memory when inactive
- No Ads, No Tracking, No Bloat

Permissions Justification
"Read and change all your data on the websites you visit" - Infy needs to request this permission so that its content script can auto-activate on any Saved URL or Database URL you want it to.

Privacy Policy
Infy Scroll does *not* track you. It does *not* use analytic services. It does *not* collect any data from your device or computer. All your data is stored locally on your device. Your data is *your* data.                    

Información Básica de la Extensión

Nombre Infy Scroll Infy Scroll
ID gdnpnkfophbmbpcjdlbiajpkgdndlino
URL Oficial https://chromewebstore.google.com/detail/infy-scroll/gdnpnkfophbmbpcjdlbiajpkgdndlino
Descripción Add customized infinite scrolling to websites and auto load the next page. Supports the AutoPagerize Database. (Beta)
Tamaño del Archivo 626 KB
Cantidad de Instalaciones 8,696
Versión Actual 0.8
Última Actualización 2023-05-25
Fecha de Publicación 2020-08-03
Calificación 4.89/5 Total de 55 Calificaciones
Desarrollador Roy Six
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/sixcious/infy-scroll
URL de la Página de Ayuda https://github.com/sixcious/infy-scroll/issues
URL de la Página de Política de Privacidad https://github.com/sixcious/info/wiki/Privacy-Policy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_title__",
        "default_icon": {
            "16": "img\/icon.png",
            "24": "img\/icon.png",
            "32": "img\/icon.png"
        },
        "default_popup": "html\/popup.html"
    },
    "commands": {
        "down": {
            "description": "Down one page"
        },
        "up": {
            "description": "Up one page"
        },
        "power": {
            "description": "Turn on or off"
        },
        "blacklist": {
            "description": "Blacklist or whitelist a URL"
        },
        "auto": {
            "description": "Pause or resume Auto"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "js\/infy-scroll.js"
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "102",
    "name": "__MSG_name__",
    "options_page": "html\/options.html",
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*.jsdelivr.net\/*",
        "*:\/\/*.statically.io\/*",
        "*:\/\/*.github.io\/*",
        "*:\/\/wedata.net\/*"
    ],
    "short_name": "__MSG_short_name__",
    "version": "0.8",
    "web_accessible_resources": [
        "\/html\/picker-ui.html",
        "js\/ajax.js",
        "\/lib\/iframeresizer\/iframeResizer.contentWindow.js"
    ]
}