YourTab

Keeping Tabs on them Tabs

Cos'è YourTab?

YourTab è un'estensione di Chrome sviluppata da zweicoder, e la sua funzione principale è "Keeping Tabs on them Tabs".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YourTab

Scarica i file di estensione YourTab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Too many Tabs? Put them on YourTab! 

YourTab allows you to save all OR select Tabs in a click! Save RAM and save yourself from headaches from having too many tabs.

Feedback and Suggestions are welcome! Interested to help? Fork it on Github at https://github.com/zweicoder/YourTab !                    

Informazioni di Base sull'Estensione

Nome YourTab YourTab
ID oiagjhkaiodbkdhiecedjllclkpamkfa
URL Ufficiale https://chrome.google.com/webstore/detail/yourtab/oiagjhkaiodbkdhiecedjllclkpamkfa
Descrizione Keeping Tabs on them Tabs
Dimensione del File 115 KB
Conteggio Installazioni 20
Versione Corrente 0.9.0
Ultimo Aggiornamento 2015-08-13
Data di Pubblicazione 2015-08-13
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore zweicoder
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YourTab",
    "version": "0.9.0",
    "description": "Keeping Tabs on them Tabs",
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_title": "YourTab",
        "default_icon": "icons\/icon48.png"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "commands": {
        "save-current": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Save current tab."
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/modal\/modal.js",
                "assets\/jquery.min.js",
                "assets\/mithril.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "src\/options\/options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ]
}