Puffer

Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).

Puffer란 무엇입니까?

Puffer은(는) PhilFrasty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Pocket (formerly: Read-it-later) is a service for marking articles on the web to read them later. Buffer is a service to schedule your posts to your social-media-accounts easily (e.g. to Twitter).

But there is no way to share your links to buffer (or any other social-media-services) right from the Pocket-Web-User-Interface. Thats exactly what this extension does.

It grabs the arcticle-title and article-url and sends it to the buffer-API, opens a new tab and shows you the buffer-dialog you are already used to.

This is really the ultra-first version 0.001. If something doesn't work or you have suggestions let me know.

ROADMAP:
- make an overlay over the article like the original buffer-extension (no new tabs)
- make compatible to Chrome < v20 (due to "onMessage"-events currently)
- integrate other social-services (facebook, twitter) directly
- ...                    

확장 프로그램 기본 정보

이름 Puffer Puffer
ID okibgglohnedabdjhojjhmflbbnghnbf
공식 URL https://chromewebstore.google.com/detail/puffer/okibgglohnedabdjhojjhmflbbnghnbf
설명 Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).
파일 크기 69.22 KB
설치 횟수 23
현재 버전 0.1
최근 업데이트 2012-11-29
출시 날짜 2012-11-29
평점 5.00/5 총 1 개의 평점
개발자 PhilFrasty
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Puffer",
    "version": "0.1",
    "manifest_version": 2,
    "homepage_url": "http:\/\/www.bitsimple.net",
    "minimum_chrome_version": "20",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "description": "Send your links to Buffer when reading on the Pocket Web-UI (formerly: Read-it-later).",
    "background": {
        "scripts": [
            "jquery.min.js",
            "popup.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/getpocket.com\/a\/read\/*",
                "https:\/\/getpocket.com\/a\/read\/*"
            ],
            "js": [
                "jquery.min.js",
                "send_links.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}