Faster Feedly

Open Feedly links in new process

Faster Feedly là gì?

Faster Feedly là một tiện ích mở rộng Chrome được phát triển bởi 0x04, và tính năng chính của nó là "Open Feedly links in new process".

Tải xuống tệp CRX của tiện ích mở rộng Faster Feedly

Tải xuống các tệp mở rộng Faster Feedly dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Faster Feedly Faster Feedly
ID gagalaigbidgkfapafgmgohcpfganoig
URL Chính Thức https://chrome.google.com/webstore/detail/faster-feedly/gagalaigbidgkfapafgmgohcpfganoig
Mô tả Open Feedly links in new process
Kích Thước Tệp 15.01 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-04-24
Ngày Phát Hành 2016-04-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển 0x04
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kirrmann/Faster-Feedly
URL Trang Trợ Giúp https://github.com/kirrmann/Faster-Feedly/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}