UpPocket

List, search, and open your Pocket links from a convenient popup.

UpPocket란 무엇입니까?

UpPocket은(는) cztchoice에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "List, search, and open your Pocket links from a convenient popup."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Uppocket is a repackage of discontinued PickPocket. All credit goes to PickPocket.

Uppocket lets you view, search, and open links from your Pocket account in a convenient popup window.

Highlights: – view and open your unread pocket links from a convenient popup.

– search all your links (archived ones too).

– optionally open all unread links in tabs with one click.

– optionally open links in Pockets reading-optimized view.

– auto-archive links when you open (or close) them.

– archive or remove links with a click, a keyboard shortcut, or a context menu command.

– pin links to the unread list.

– add links to Pocket using the popup or context menu items.

Uppocket has two basic modes of operation.

You can choose the mode to use in the extensions Options.

In list mode, clicking the toolbar button will open a popup listing your unread (or unarchived) Pocket links.

You can open a link from the list by clicking it or by selecting it with the up/down keys and pressing enter.

You can also search all your links (including archived ones) using the search bar at the top of the popup.

In tabs mode, clicking the toolbar button will simply open all of your unread links in new tabs.

(If you have more than 10 unread links, the extension will ask you to confirm opening them.)

In either mode, Uppocket can automatically archive a link when you open it.

Archiving can be done when you activate the links tab or when you close it (or never).

You can choose the desired setting in Options.

You can also manually archive a link using a context menu command or by typing Shift+Alt+P while viewing its tab.

To override automatic archival once, hold down the Shift key while clicking a link.

You can archive or delete a link in the popup by clicking the appropriate icon or typing a keyboard shortcut (see below).

You can also add links to your pocket account using a context menu item ("Add Page to Pocket"), a keyboard shortcut (Ctrl+Shift+P), or the add button in the list-mode popup.

If you use the popups Add button (the "+" icon), you get a form in which you can edit the title and URL of the link before submitting it.

If you use the context menu item or the keyboard shortcut, Uppocket will just use the URL and title of the current web page                    

확장 프로그램 기본 정보

이름 UpPocket UpPocket
ID ohdbjdpggkfnnnchnkkmibcmgfbejoac
공식 URL https://chromewebstore.google.com/detail/uppocket/ohdbjdpggkfnnnchnkkmibcmgfbejoac
설명 List, search, and open your Pocket links from a convenient popup.
파일 크기 85.9 KB
설치 횟수 245
현재 버전 0.0.1
최근 업데이트 2022-11-01
출시 날짜 2021-11-02
평점 4.25/5 총 8 개의 평점
개발자 cztchoice
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "[email protected]"
        },
        "default_title": "UpPocket"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            }
        },
        "add-current-page": {
            "description": "Add the current page to Pocket",
            "suggested_key": {
                "default": "Alt+Shift+K"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "List, search, and open your Pocket links from a convenient popup.",
    "icons": {
        "128": "icon-128-aqua.png",
        "16": "icon-16.png",
        "48": "icon-48-aqua.png"
    },
    "manifest_version": 2,
    "name": "UpPocket",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "contextMenus",
        "https:\/\/readitlaterlist.com\/*",
        "https:\/\/getpocket.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.1",
    "web_accessible_resources": [
        "report.html",
        "add.html",
        "oauth.html"
    ]
}