Site Cycler

Navigate through your favorite sites with ease

¿Qué es Site Cycler?

Site Cycler es una extensión de Chrome desarrollada por Bohdan Stasiuk, y su función principal es "Navigate through your favorite sites with ease".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Site Cycler

Descarga archivos de extensión Site Cycler 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

                        Add a list of your favorite sites to the text field at the options of Site Cycler. Click on the extension's icon. If there's no open tab with any site from the list it'll be opened. If tab is already exist but not selected it'll be selected. If tab with site's page is opened and selected it'll be redirected to the next station from the list.

v.1.3
Added ability to pin tab as additional option

v.1.1
1. Changed icon and name
2. Added ability to switch between pages on the same domain                    

Información Básica de la Extensión

Nombre Site Cycler Site Cycler
ID domafifjljmmbceapbjdecmgkjflanfo
URL Oficial https://chromewebstore.google.com/detail/site-cycler/domafifjljmmbceapbjdecmgkjflanfo
Descripción Navigate through your favorite sites with ease
Tamaño del Archivo 30.19 KB
Cantidad de Instalaciones 11
Versión Actual 1.3
Última Actualización 2017-01-01
Fecha de Publicación 2017-01-01
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Bohdan Stasiuk
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Site Cycler",
    "description": "Navigate through your favorite sites with ease",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "BSChromeConsole.js",
                "BSStringHelper.js",
                "RNStations.js",
                "RNLocalStoreHelper.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "BSChromeConsole.js",
            "BSStringHelper.js",
            "RNStations.js",
            "onClick.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/*\/*",
        "storage"
    ],
    "web_accessible_resources": [],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}