Faster Feedly

Open Feedly links in new process

什么是Faster Feedly?

Faster Feedly是由0x04开发的Chrome扩展程序,该扩展的主要功能是“Open Feedly links in new process”。

下载Faster Feedly扩展crx文件

下载Faster Feedly扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Faster Feedly Faster Feedly
ID gagalaigbidgkfapafgmgohcpfganoig
官方URL https://chrome.google.com/webstore/detail/faster-feedly/gagalaigbidgkfapafgmgohcpfganoig
简介 Open Feedly links in new process
文件大小 15.01 KB
安装次数 68
当前版本 0.1
更新时间 2016-04-24
上架时间 2016-04-24
评分 5.00/5 共3次评分
开发者 0x04
付费类型 free
扩展官网 https://github.com/kirrmann/Faster-Feedly
帮助页面URL https://github.com/kirrmann/Faster-Feedly/issues
支持的语言 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"
            ]
        }
    ]
}