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 Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button to feedly.com to open all unread articles in new tabs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Feedly Open All Unread एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
    ]
}