Site Cycler

Navigate through your favorite sites with ease

Что такое Site Cycler?

Site Cycler - это расширение Chrome, разработанное Bohdan Stasiuk, и его основная функция - "Navigate through your favorite sites with ease".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Site Cycler

Скачайте файлы расширений Site Cycler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Site Cycler Site Cycler
ID domafifjljmmbceapbjdecmgkjflanfo
Официальный URL https://chromewebstore.google.com/detail/site-cycler/domafifjljmmbceapbjdecmgkjflanfo
Описание Navigate through your favorite sites with ease
Размер файла 30.19 KB
Количество установок 11
Текущая Версия 1.3
Последнее Обновление 2017-01-01
Дата публикации 2017-01-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Bohdan Stasiuk
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
    }
}