Faster Feedly

Open Feedly links in new process

Vad är Faster Feedly?

Faster Feedly är en Chrome-tillägg utvecklad av 0x04, och dess huvudfunktion är "Open Feedly links in new process".

Ladda ner Faster Feedly-förlängningens CRX-fil

Ladda ner Faster Feedly-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Faster Feedly Faster Feedly
ID gagalaigbidgkfapafgmgohcpfganoig
Officiell webbadress https://chrome.google.com/webstore/detail/faster-feedly/gagalaigbidgkfapafgmgohcpfganoig
Beskrivning Open Feedly links in new process
Filstorlek 15.01 KB
Antal Installationer 68
Aktuell Version 0.1
Senast Uppdaterad 2016-04-24
Publiceringsdatum 2016-04-24
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare 0x04
Betalningssätt free
Tilläggswebbplats https://github.com/kirrmann/Faster-Feedly
Hjälpsida URL https://github.com/kirrmann/Faster-Feedly/issues
Stödda Språk 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"
            ]
        }
    ]
}