Pull Tabs

Save open tabs to disk as files or put them in your Pocket.

Τι είναι το Pull Tabs;

Το Pull Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον adam, και η κύρια λειτουργία του είναι "Save open tabs to disk as files or put them in your Pocket.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Pull Tabs

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

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

                        A browser extension to help manage open tabs by bulk saving them to pocket, downloading, bookmarking or closing them. An advanced view also allows you to choose tab by tab what to do with each tab. 

There exist two layouts or workflows, the first workflow, dubbed "simple", applies to all tabs in the current window, e.g. the window the popup was initated from and presents various actions you can take on all the tabs. For instance you can download all tabs ( which may or may not go as you expect, the extension will download the entirety of the tab, so if the tab is an imgur/instagram/flickr page with an image embedded it will download an HTML file. However, if the tab is a direct link to an image it will download an image. ). Other tab actions include bookmarking, saving to Pocket, ignoring or closing.

The second workflow layout presents tab action options ( download, save to Pocket, bookmark, ignore, close, etc. ) for each tab individually. Additionally, a checkbox allows you to select whether the tab will be acted on or ignored completely. In this workflow, if you have ten open tabs, you could choose to download two of them, close two of them, save two to pocket and ignore the remaining four. Additionally there is an option to close tabs upon a successful action ( except a successful ignore, which will leave the tab as is ). In the previous examples if all actions succeeded you'd be left with four open tabs. If say the save to Pocket action failed, you'd have six tabs left open.                    

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

Όνομα Pull Tabs Pull Tabs
ID bimplhlpceccnolgbbedbiedkecophnn
Επίσημο URL https://chromewebstore.google.com/detail/pull-tabs/bimplhlpceccnolgbbedbiedkecophnn
Περιγραφή Save open tabs to disk as files or put them in your Pocket.
Μέγεθος Αρχείου 110 KB
Αριθμός Εγκαταστάσεων 383
Τρέχουσα Έκδοση 0.15.1
Τελευταία Ενημέρωση 2019-02-28
Ημερομηνία Δημοσίευσης 2019-02-27
Αξιολόγηση 4.22/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής adam
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://adam42.github.io/pull-tabs/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Adam42/pull-tabs/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pull Tabs",
    "description": "Save open tabs to disk as files or put them in your Pocket.",
    "version": "0.15.1",
    "permissions": [
        "tabs",
        "downloads",
        "identity",
        "bookmarks",
        "storage",
        "https:\/\/getpocket.com\/v3\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "pocket.html"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Pull Tabs"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    }
}