Faster Feedly

Open Feedly links in new process

Cos'è Faster Feedly?

Faster Feedly è un'estensione di Chrome sviluppata da 0x04, e la sua funzione principale è "Open Feedly links in new process".

Scarica il file CRX dell'estensione Faster Feedly

Scarica i file di estensione Faster Feedly in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds the attribute "rel=noreferrer" to any link in Feedly right before the it gets clicked. Because of this attribute the link will open in a new chrome process instead of using the same process as the Feedly tab and share its resources.

This means that you should not experience any hangs or freezes in Feedly. If Feedly or one of the opened pages are crashing, it won't let crash all the other tabs.                    

Informazioni di Base sull'Estensione

Nome Faster Feedly Faster Feedly
ID gagalaigbidgkfapafgmgohcpfganoig
URL Ufficiale https://chrome.google.com/webstore/detail/faster-feedly/gagalaigbidgkfapafgmgohcpfganoig
Descrizione Open Feedly links in new process
Dimensione del File 15.01 KB
Conteggio Installazioni 68
Versione Corrente 0.1
Ultimo Aggiornamento 2016-04-24
Data di Pubblicazione 2016-04-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore 0x04
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kirrmann/Faster-Feedly
URL della Pagina di Aiuto https://github.com/kirrmann/Faster-Feedly/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Faster Feedly",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Open Feedly links in new process",
    "icons": {
        "24": "24.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/feedly.com\/*"
            ],
            "js": [
                "modify-a-attr.js"
            ]
        }
    ]
}