Spaces

Intuitive tab management

Τι είναι το Spaces;

Το Spaces είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον suspensionlabs, και η κύρια λειτουργία του είναι "Intuitive tab management".

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

screenshot

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

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

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

                        Spaces is a workspace manager for chrome. It treats each chrome window like a different workspace and lets you name and save each space. You can close a window full of tabs at any time then reopen it later and continue exactly where you left off.

Spaces keeps track of new tabs opened in each workspace and also tabs that you close. It also allows you to quickly move a tab that you are currently viewing into any other space - whether it's open or closed. Great for when you find yourself opening a tab out of context with what you are currently working on and want to come back to it later.

Spaces was developed to help users that tend to have way too many tabs open in a chrome window. It encourages you to move tabs that are not immediately relevant into a different, more appropriate space - thus removing it from your current window. This keeps your chrome session manageable - both visually and from a memory perspective.

Isn't this essentially just bookmarks with folders? Yeah, pretty much - but who uses bookmarks?                    

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

Όνομα Spaces Spaces
ID cenkmofngpohdnkbjdpilgpmbiiljjim
Επίσημο URL https://chrome.google.com/webstore/detail/cenkmofngpohdnkbjdpilgpmbiiljjim
Περιγραφή Intuitive tab management
Μέγεθος Αρχείου 56.43 KB
Αριθμός Εγκαταστάσεων 14,832
Τρέχουσα Έκδοση 1.1.3
Τελευταία Ενημέρωση 2020-02-05
Ημερομηνία Δημοσίευσης 2020-02-02
Αξιολόγηση 4.03/5 Συνολικά 181 Αξιολογήσεις
Προγραμματιστής suspensionlabs
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spaces",
    "description": "Intuitive tab management",
    "version": "1.1.3",
    "permissions": [
        "tabs",
        "storage",
        "history",
        "unlimitedStorage",
        "chrome:\/\/favicon\/*",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/db.js",
            "js\/dbService.js",
            "js\/spacesService.js",
            "js\/utils.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Spaces",
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    },
    "options_page": "spaces.html",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "web_accessible_resources": [],
    "incognito": "split",
    "manifest_version": 2,
    "minimum_chrome_version": "35",
    "commands": {
        "spaces-move": {
            "description": "Move active tab",
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "Command+Shift+M"
            }
        },
        "spaces-switch": {
            "description": "Switch between spaces",
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            }
        }
    }
}