Save to Pocket

The easiest, fastest way to capture articles, videos, and more.

Τι είναι το Save to Pocket;

Το Save to Pocket είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://getpocket.com, και η κύρια λειτουργία του είναι "The easiest, fastest way to capture articles, videos, and more.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Save to Pocket

Λήψη αρχείων επέκτασης Save to Pocket σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Pocket’s Chrome extension is the easiest, fastest way to capture articles, videos, and anything else you find on the web. With one click, the content you’ve collected appears across all your devices in a clean, distraction-free space—there to read when you’re ready, whether at home, at work, or on the go. Pocket becomes a personal, quiet corner of the internet where you can spend quality time with the stories that matters to you.

SAVE CONTENT 3 DIFFERENT WAYS
- Click the Pocket button in the toolbar
- Or right-click a link and select “Save to Pocket”
- Or use the keyboard shortcuts: Ctrl+Shift+P (Windows), Command+Shift+P (Mac)

A HOME FOR CONTENT YOU CARE ABOUT
- Save anything that interests you—articles, images, videos, links—and absorb them when you're ready
- Capture news from Buzzfeed, articles from The New York Times, stories from Flipboard, long reads from Washington Post, and recipes from Pinterest. You can save memes from Reddit, links from Twitter, and videos from YouTube
- Read directly in Pocket, a calm, focused environment
- Add tags to order, sort, and find stories in your Pocket

Get Pocket Premium to enjoy custom fonts, a permanent library, unlimited highlighting, and more. Even try listening to articles in Pocket when you're on the go. https://getpocket.com/premium                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Save to Pocket Save to Pocket
ID niloccemoadcdkdjlinkgdfekeahmflj
Επίσημο URL https://chromewebstore.google.com/detail/save-to-pocket/niloccemoadcdkdjlinkgdfekeahmflj
Περιγραφή The easiest, fastest way to capture articles, videos, and more.
Μέγεθος Αρχείου 356 KB
Αριθμός Εγκαταστάσεων 2,214,336
Τρέχουσα Έκδοση 4.0.6
Τελευταία Ενημέρωση 2022-11-07
Ημερομηνία Δημοσίευσης 2019-07-24
Αξιολόγηση 4.23/5 Συνολικά 7790 Αξιολογήσεις
Προγραμματιστής https://getpocket.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://help.getpocket.com
Υποστηριζόμενες Γλώσσες de,en,fr,nl,es,es-419,it,pl,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Save to Pocket",
    "version": "4.0.6",
    "description": "The easiest, fastest way to capture articles, videos, and more.",
    "default_locale": "en",
    "icons": {
        "16": "assets\/images\/icon-16.png",
        "48": "assets\/images\/icon-48.png",
        "128": "assets\/images\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "38": "assets\/images\/action-icon.png"
        },
        "default_title": "Save to Pocket"
    },
    "background": {
        "service_worker": "pages\/background\/index.js",
        "type": "module"
    },
    "options_page": "pages\/options\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "pages\/injector\/import-content.js"
            ],
            "css": [
                "assets\/fonts\/fonts.css",
                "assets\/pocket-save-extension.css"
            ]
        },
        {
            "matches": [
                "*:\/\/getpocket.com\/extension_login_success*"
            ],
            "js": [
                "pages\/import-login.js"
            ]
        },
        {
            "matches": [
                "*:\/\/getpocket.com\/login?e=4"
            ],
            "js": [
                "pages\/import-logout.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/getpocket.com\/*"
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "cookies",
        "storage"
    ],
    "commands": {
        "save-to-pocket-action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "windows": "Ctrl+Shift+P",
                "mac": "Command+Shift+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            },
            "description": "Save page to Pocket"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "pages\/injector\/content.js",
                "pages\/login.js",
                "pages\/logout.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "*:\/\/getpocket.com\/*"
            ]
        }
    ]
}