Feedly Open All Unread

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

What is Feedly Open All Unread?

Feedly Open All Unread is a Chrome extension developed by Unknown, and its main feature is "Adds a button to feedly.com to open all unread articles in new tabs".

Extension Screenshots

screenshot

Download Feedly Open All Unread Extension CRX File

Download Feedly Open All Unread extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Feedly Open All Unread Feedly Open All Unread
ID blmhlkddebpmcjihpgbnhiinjfibekkf
Official URL https://chromewebstore.google.com/detail/feedly-open-all-unread/blmhlkddebpmcjihpgbnhiinjfibekkf
Description Adds a button to feedly.com to open all unread articles in new tabs
File Size 8.03 KB
Installation Count 15
Current Version 1.3
Last Updated 2019-01-01
Publish Date 2019-01-01
Rating 1.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Help Page URL https://github.com/cypressious/ff-feedly-open-unread
Supported Languages 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"
    ]
}