Feedly Open All Unread

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

Qu'est-ce que Feedly Open All Unread ?

Feedly Open All Unread est une extension Chrome développée par Unknown, et sa fonction principale est "Adds a button to feedly.com to open all unread articles in new tabs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Feedly Open All Unread

Téléchargez les fichiers d'extension Feedly Open All Unread au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Feedly Open All Unread Feedly Open All Unread
ID blmhlkddebpmcjihpgbnhiinjfibekkf
URL Officiel 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
Taille du Fichier 8.03 KB
Nombre d'Installations 15
Version Actuelle 1.3
Dernière Mise à Jour 2019-01-01
Date de Publication 2019-01-01
Évaluation 1.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
URL de la Page d'Aide https://github.com/cypressious/ff-feedly-open-unread
Langues Prises en Charge 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"
    ]
}