Faster Feedly

Open Feedly links in new process

Co to jest Faster Feedly?

Faster Feedly to rozszerzenie Chrome opracowane przez 0x04, a jego główną funkcją jest „Open Feedly links in new process”.

Pobierz plik CRX rozszerzenia Faster Feedly

Pobierz pliki rozszerzeń Faster Feedly w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Faster Feedly Faster Feedly
ID gagalaigbidgkfapafgmgohcpfganoig
Oficjalny URL https://chrome.google.com/webstore/detail/faster-feedly/gagalaigbidgkfapafgmgohcpfganoig
Opis Open Feedly links in new process
Rozmiar pliku 15.01 KB
Liczba instalacji 68
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-04-24
Data Publikacji 2016-04-24
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper 0x04
Typ Płatności free
Strona Rozszerzenia https://github.com/kirrmann/Faster-Feedly
Adres URL Strony Pomocy https://github.com/kirrmann/Faster-Feedly/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}