Task-focused browser tabs

Opens all tabs needed for a task, and saves them for later when switching to another task.

Τι είναι το Task-focused browser tabs;

Το Task-focused browser tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://schwinl.net, και η κύρια λειτουργία του είναι "Opens all tabs needed for a task, and saves them for later when switching to another task.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Task-focused browser tabs

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

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

                        Save all currently opened tabs and attach them to a task. Keep all tasks and their tabs synchronized between browsers.

Do you always end up with 30+ tabs open in your browser? Do some of your routine task require a handful of web pages at the same time? Did you ever dream of being able to "git stash" your browsing session when interrupted? Well, I did. So, I made this little extension.

Click on extension button to jump to its tasks-list tab in current window. All tasks will store the URLs of all tabs in the same window. Simply double-click a task to activate or de-activate it. This will close all tabs when deactivated and bring back all pages when activated again. Please note that only the URL is stored, not page content, you might have to log-in or fill forms again.

This extension uses google chrome sync to store data. This means that when chrome is connected to a google account, it will sync data across all your chrome installs. The downside is that this is stored online somewhere at google. As google documentation states "Confidential user information should not be stored! The storage area isn't encrypted.". You've been warned. However, please note that only URLs of tabs associated with a task is stored.

Also, please note that I, extension developer, cannot access your data in any way, even less provide it to any third-party. Your data is yours.                    

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

Όνομα Task-focused browser tabs Task-focused browser tabs
ID meehijbggelpmkddjmknibicigjjjhec
Επίσημο URL https://chromewebstore.google.com/detail/task-focused-browser-tabs/meehijbggelpmkddjmknibicigjjjhec
Περιγραφή Opens all tabs needed for a task, and saves them for later when switching to another task.
Μέγεθος Αρχείου 1.03 MB
Αριθμός Εγκαταστάσεων 78
Τρέχουσα Έκδοση 0.2.0
Τελευταία Ενημέρωση 2019-06-12
Ημερομηνία Δημοσίευσης 2019-06-12
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://schwinl.net
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.schwinl.net/task-focused-tabs-chrome-extension
Υποστηριζόμενες Γλώσσες en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "Task-focused",
    "version": "0.2.0",
    "description": "__MSG_appDesc__",
    "author": "Guillaume Rams",
    "homepage_url": "http:\/\/www.schwinl.net\/task-focused-tabs-chrome-extension\/",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}