Feedly Add

Quickly add Feeds to Feedly without leaving current tab

Feedly Add là gì?

Feedly Add là một tiện ích mở rộng Chrome được phát triển bởi http://www.peeomid.com, và tính năng chính của nó là "Quickly add Feeds to Feedly without leaving current tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

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

Tải xuống các tệp mở rộng Feedly Add 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

                        Chrome extension to quickly add a new feed to Feedly, without navigating away from current tab.

Leave feedback on what you want to improve, please!

NOTE: This version is usable only in sandbox environment of Feedly. I'll be updating soon for production environment.

=====
Stay tuned for more useful extension at: www.peeomid.com
Contact me for any feedback for this extension, or suggestion for new extension at lihavim [at] gmail [dot] com

Source can be found at: https://github.com/peeomid/feedlyAdd                    

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

Tên Feedly Add Feedly Add
ID mekiakiebclbmjghikmdammaglfcgink
URL Chính Thức https://chrome.google.com/webstore/detail/feedly-add/mekiakiebclbmjghikmdammaglfcgink
Mô tả Quickly add Feeds to Feedly without leaving current tab
Kích Thước Tệp 33.59 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2014-11-26
Ngày Phát Hành 2014-11-26
Nhà Phát Triển http://www.peeomid.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "manifest_version": 2,
    "name": "Feedly Add",
    "short_name": "Add feed to Feedly",
    "background": {
        "persistent": false,
        "scripts": [
            "js\/feedly.api.js",
            "js\/background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon-128.png",
        "default_title": "Add Feed to Feedly",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/sniff_common.js",
                "js\/feed_finder.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Quickly add Feeds to Feedly without leaving current tab",
    "homepage_url": "http:\/\/www.peeomid.com\/",
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png",
        "48": "icon-48.png"
    },
    "options_page": "options\/options.html",
    "web_accessible_resources": [
        "icon-48.png"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1"
}