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