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
官方網址 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
    }
}