FavTabs

Opens a set of your favorite tabs.

FavTabsคืออะไร?

FavTabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ian Hyatt และคุณลักษณะหลักของมันคือ "Opens a set of your favorite tabs."

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

screenshot

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

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

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

                        This extensions provides a button in Chrome that opens a set of default (favorite) tabs. You can specify the URLs for the tabs to open in the extension options as well as which tabs (if any) you want pinned.                    

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

ชื่อ FavTabs FavTabs
ID epmimoeohdhcbafcelmkkbabkkhojnee
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/favtabs/epmimoeohdhcbafcelmkkbabkkhojnee
คำอธิบาย Opens a set of your favorite tabs.
ขนาดไฟล์ 17.64 KB
จำนวนการติดตั้ง 41
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-10-27
วันที่เผยแพร่ 2017-01-16
ผู้พัฒนา Ian Hyatt
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FavTabs",
    "description": "Opens a set of your favorite tabs.",
    "version": "1.0",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "FavTabs"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}