Feedly Open All Unread

Adds a button to feedly.com to open all unread articles in new tabs

ما هو Feedly Open All Unread؟

Feedly Open All Unread هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Adds a button to feedly.com to open all unread articles in new tabs".

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

screenshot

تحميل ملف CRX للإضافة Feedly Open All Unread

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

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

                        Adds a button to feedly.com to open all unread articles in new tabs                    

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

الاسم Feedly Open All Unread Feedly Open All Unread
ID blmhlkddebpmcjihpgbnhiinjfibekkf
عنوان URL الرسمي https://chromewebstore.google.com/detail/feedly-open-all-unread/blmhlkddebpmcjihpgbnhiinjfibekkf
الوصف Adds a button to feedly.com to open all unread articles in new tabs
حجم الملف 8.03 KB
عدد التثبيتات 15
النسخة الحالية 1.3
آخر تحديث 2019-01-01
تاريخ النشر 2019-01-01
تقييم 1.00/5 مجموع تقييمات 1
المطور Unknown
نوع الدفع free
عنوان صفحة المساعدة https://github.com/cypressious/ff-feedly-open-unread
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feedly Open All Unread",
    "version": "1.3",
    "description": "Adds a button to feedly.com to open all unread articles in new tabs",
    "homepage_url": "https:\/\/github.com\/cypressious\/ff-feedly-open-unread",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/feedly.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}