Tab Roulette

Tab slideshow plugin - Awesome for in-office dashboards!

Tab Rouletteคืออะไร?

Tab Roulette เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blog.developer-b.com และคุณลักษณะหลักของมันคือ "Tab slideshow plugin - Awesome for in-office dashboards!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Roulette

ดาวน์โหลดไฟล์ส่วนขยาย Tab Roulette ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension will cycle through any open tabs. It comes with an option page allowing you to specify how long each tab should be displayed and whether or not it should be reloaded. 

Upon opening the options dialog it'll cycle through all the tabs to take a screenshot making it easier to see which tab you're configuring. 

Keep in mind that this was an evening project and probably contain a lot of rough edges so don't blame me if something catches on fire.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tab Roulette Tab Roulette
ID dlgdimppibbgkjbhnfbkgbfgiclmjlch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-roulette/dlgdimppibbgkjbhnfbkgbfgiclmjlch
คำอธิบาย Tab slideshow plugin - Awesome for in-office dashboards!
ขนาดไฟล์ 237 KB
จำนวนการติดตั้ง 1,250
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2013-08-30
วันที่เผยแพร่ 2013-08-30
คะแนน 4.75/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา https://blog.developer-b.com
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/kimble/chrome-tab-roulette
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Roulette",
    "version": "0.5",
    "description": "Tab slideshow plugin - Awesome for in-office dashboards!",
    "options_page": "src\/view\/mission-control.html",
    "browser_action": {
        "default_icon": "src\/images\/icon_19x19_grey.png",
        "default_title": "Tab roulette"
    },
    "background": {
        "scripts": [
            "src\/jslib\/underscore-1.4.3.js",
            "src\/js\/lib.js",
            "src\/js\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "background",
        ""
    ],
    "icons": {
        "16": "src\/images\/icon_16x16.png",
        "48": "src\/images\/icon_48x48.png",
        "128": "src\/images\/icon_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/css\/content-script.css"
            ],
            "js": [
                "src\/jslib\/jquery-1.8.3.js",
                "src\/js\/content-script.js"
            ]
        }
    ]
}