Site Cycler

Navigate through your favorite sites with ease

什么是Site Cycler?

Site Cycler是由Bohdan Stasiuk开发的Chrome扩展程序,该扩展的主要功能是“Navigate through your favorite sites with ease”。

扩展截图

screenshot

下载Site Cycler扩展crx文件

下载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
    }
}