YourTab

Keeping Tabs on them Tabs

YourTabคืออะไร?

YourTab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zweicoder และคุณลักษณะหลักของมันคือ "Keeping Tabs on them Tabs"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Too many Tabs? Put them on YourTab! 

YourTab allows you to save all OR select Tabs in a click! Save RAM and save yourself from headaches from having too many tabs.

Feedback and Suggestions are welcome! Interested to help? Fork it on Github at https://github.com/zweicoder/YourTab !                    

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

ชื่อ YourTab YourTab
ID oiagjhkaiodbkdhiecedjllclkpamkfa
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/yourtab/oiagjhkaiodbkdhiecedjllclkpamkfa
คำอธิบาย Keeping Tabs on them Tabs
ขนาดไฟล์ 115 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 0.9.0
อัปเดตครั้งล่าสุด 2015-08-13
วันที่เผยแพร่ 2015-08-13
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา zweicoder
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YourTab",
    "version": "0.9.0",
    "description": "Keeping Tabs on them Tabs",
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "YourTab",
        "default_icon": "icons\/icon48.png"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "commands": {
        "save-current": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Save current tab."
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/modal\/modal.js",
                "assets\/jquery.min.js",
                "assets\/mithril.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "src\/options\/options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ]
}