Feedly Open All Unread

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

Feedly Open All Unread là gì?

Feedly Open All Unread là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Adds a button to feedly.com to open all unread articles in new tabs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feedly Open All Unread

Tải xuống các tệp mở rộng Feedly Open All Unread dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feedly Open All Unread Feedly Open All Unread
ID blmhlkddebpmcjihpgbnhiinjfibekkf
URL Chính Thức https://chromewebstore.google.com/detail/feedly-open-all-unread/blmhlkddebpmcjihpgbnhiinjfibekkf
Mô tả Adds a button to feedly.com to open all unread articles in new tabs
Kích Thước Tệp 8.03 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2019-01-01
Ngày Phát Hành 2019-01-01
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/cypressious/ff-feedly-open-unread
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}