Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

ما هو Feedly Background Tab Open؟

Feedly Background Tab Open هو إضافة Chrome تم تطويرها بواسطة k-yogo، والميزة الرئيسية لها هي "Open Feedly Links in Background Tab using shortcut key".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Feedly Background Tab Open

قم بتنزيل ملفات الامتداد Feedly Background Tab Open بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        In the default Feedly (feedly.com, an RSS Reader Service), article links open in a separate tab when using the "v" shortcut key. However, this does not open the link in the background. With this extension, you can open article links in a separate background tab using the new custom shortcut key.

In the version 1.0, it is now possible to customize shortcut key configurations.

If you like the extension please support the developer (donation link is put).                    

معلومات أساسية عن التمديد

الاسم Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
عنوان URL الرسمي https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
الوصف Open Feedly Links in Background Tab using shortcut key
حجم الملف 13.95 KB
عدد التثبيتات 98
النسخة الحالية 1.24
آخر تحديث 2023-05-25
تاريخ النشر 2023-03-28
تقييم 4.50/5 مجموع تقييمات 2
المطور k-yogo
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/k-yogo/feedly-background-tab-open
عنوان صفحة المساعدة https://github.com/k-yogo/feedly-background-tab-open
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Background Tab Open",
    "description": "Open Feedly Links in Background Tab using shortcut key",
    "version": "1.24",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.feedly.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}