Feedly Add

Quickly add Feeds to Feedly without leaving current tab

Feedly Add란 무엇입니까?

Feedly Add은(는) http://www.peeomid.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly add Feeds to Feedly without leaving current tab"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Feedly Add 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Feedly Add Feedly Add
ID mekiakiebclbmjghikmdammaglfcgink
공식 URL https://chrome.google.com/webstore/detail/feedly-add/mekiakiebclbmjghikmdammaglfcgink
설명 Quickly add Feeds to Feedly without leaving current tab
파일 크기 33.59 KB
설치 횟수 59
현재 버전 0.1
최근 업데이트 2014-11-26
출시 날짜 2014-11-26
개발자 http://www.peeomid.com
결제 유형 free
지원되는 언어 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"
}