Feedly tabs

Open Feedly articles in new tabs

Feedly tabs क्या है?

Feedly tabs Peter Leitzen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open Feedly articles in new tabs"।

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

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

crx प्रारूप में Feedly tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        See https://github.com/splattael/chrome-feedly-tabs for source.

== Changes

Version 0.4.0

* Inject green "TABS" button into feedly.com as an alternative to pageAction

Version 0.3.1

* Fix message passing for newer Chrome versions.

Version 0.3.0

* Require permission for Feedly's https version.

Version 0.2.0

* Use pageAction instead of browserAction.

Version 0.1.0

* Feedly changed URL to cloud.feedly.com. Please upgrade!
* Added some icons.                    

एक्सटेंशन की मूल जानकारी

नाम Feedly tabs Feedly tabs
ID bbknmbmpegpkeamflgefmekmjjhgddhk
आधिकारिक URL https://chromewebstore.google.com/detail/feedly-tabs/bbknmbmpegpkeamflgefmekmjjhgddhk
विवरण Open Feedly articles in new tabs
फ़ाइल का आकार 57.75 KB
स्थापना संख्या 104
वर्तमान संस्करण 0.4.0
अंतिम अपडेट 2017-08-10
प्रकाशन तिथि 2017-08-10
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर Peter Leitzen
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Feedly tabs",
    "description": "Open Feedly articles in new tabs",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "version": "0.4.0",
    "permissions": [
        "tabs",
        "http:\/\/*.feedly.com\/home*",
        "https:\/\/*.feedly.com\/home*"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Open Feedly articles in new tabs"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/feedly.com\/*"
            ],
            "js": [
                "js\/inject_action_button.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}