Feedly Background Tab Open

Open Feedly Links in Background Tab using shortcut key

Qu'est-ce que Feedly Background Tab Open ?

Feedly Background Tab Open est une extension Chrome développée par k-yogo, et sa fonction principale est "Open Feedly Links in Background Tab using shortcut key".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Feedly Background Tab Open

Téléchargez les fichiers d'extension Feedly Background Tab Open 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

                        In the default Feedly (feedly.com, an RSS Reader Service), article links open in a separate tab when using the "v" shortcut key. However, this does not open the link in the background. With this extension, you can open article links in a separate background tab using the new custom shortcut key.

In the version 1.0, it is now possible to customize shortcut key configurations.

If you like the extension please support the developer (donation link is put).                    

Informations de Base sur l'Extension

Nom Feedly Background Tab Open Feedly Background Tab Open
ID knekhffbanfpccociahfjklboipfkecm
URL Officiel https://chromewebstore.google.com/detail/feedly-background-tab-ope/knekhffbanfpccociahfjklboipfkecm
Description Open Feedly Links in Background Tab using shortcut key
Taille du Fichier 13.95 KB
Nombre d'Installations 98
Version Actuelle 1.24
Dernière Mise à Jour 2023-05-25
Date de Publication 2023-03-28
Évaluation 4.50/5 Total 2 Évaluations
Développeur k-yogo
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/k-yogo/feedly-background-tab-open
URL de la Page d'Aide https://github.com/k-yogo/feedly-background-tab-open
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feedly Background Tab Open",
    "description": "Open Feedly Links in Background Tab using shortcut key",
    "version": "1.24",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.feedly.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ]
}