Save to Pocket (mini)

Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.

Save to Pocket (mini)란 무엇입니까?

Save to Pocket (mini)은(는) evmar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions."입니다.

확장 프로그램 스크린샷

screenshot

Save to Pocket (mini) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        I think Pocket is great, but I don't like how their Chrome extension requires so many permissions.  (It even makes use of those permissions to e.g. modify the Hacker News page.  I appreciate this can be turned off via their settings but I'd prefer it didn't even have the capability.)

This extension is the minimal code to auth into Pocket and save URLs into it.

Read the source here:
https://github.com/martine/pocket-mini

For more features, use the official Pocket extension:
https://chrome.google.com/webstore/detail/save-to-pocket/niloccemoadcdkdjlinkgdfekeahmflj                    

확장 프로그램 기본 정보

이름 Save to Pocket (mini) Save to Pocket (mini)
ID calnfcidhlhdmmmnicdpddbmmjmfohem
공식 URL https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem
설명 Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
파일 크기 8.66 KB
설치 횟수 1,016
현재 버전 1
최근 업데이트 2014-08-08
출시 날짜 2014-08-08
평점 4.69/5 총 16 개의 평점
개발자 evmar
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/martine/pocket-mini
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save to Pocket (mini)",
    "description": "Adds a toolbar button to save the current page to Pocket, without requiring the \"all data\" or \"all websites\" permissions.",
    "version": "1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Add to Pocket",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/getpocket.com\/"
    ],
    "web_accessible_resources": [
        "auth.html"
    ],
    "manifest_version": 2
}