Spectabular

Your tabs, managed.

Τι είναι το Spectabular;

Το Spectabular είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ollien, και η κύρια λειτουργία του είναι "Your tabs, managed.".

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

screenshot
screenshot

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

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

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

                        Tabs are great. We love them. However, your browser can get cluttered very quickly. In steps Spectabular. With it's tab managing abilities, browsing becomes a breeze. 

Features include:
    ⦿ Closing tabs
    ⦿ Closing tabs in bulk, by holding the shift key
    ⦿ Pinning tabs to Chrome's built-in tab bar
    ⦿ Detaching tabs into their own window
    ⦿ Switching tabs and windows, by clicking on them.
    ⦿ Closing windows
    ⦿ Closing windows in bulk, by holding the shift key
    ⦿ Renaming windows, by double clicking their name

Source code can be found on Github at https://github.com/ollien/Spectabular                    

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

Όνομα Spectabular Spectabular
ID dfbebiockmbbeaookjfmdafnjdbimcnm
Επίσημο URL https://chromewebstore.google.com/detail/spectabular/dfbebiockmbbeaookjfmdafnjdbimcnm
Περιγραφή Your tabs, managed.
Μέγεθος Αρχείου 517 KB
Αριθμός Εγκαταστάσεων 26
Τρέχουσα Έκδοση 0.532
Τελευταία Ενημέρωση 2015-03-16
Ημερομηνία Δημοσίευσης 2015-03-16
Προγραμματιστής ollien
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ollien/Spectabular
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spectabular",
    "description": "Your tabs, managed.",
    "author": "ollien",
    "version": "0.532",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "offline_enabled": true,
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "title_listener.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            }
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage"
    ]
}