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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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