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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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
URL หน้าช่วยเหลือ 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"
    ]
}