YourTab

Keeping Tabs on them Tabs

O que é YourTab?

YourTab é uma extensão do Chrome desenvolvida por zweicoder, e sua principal característica é "Keeping Tabs on them Tabs".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão YourTab

Baixe arquivos de extensão YourTab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 !                    

Informações Básicas da Extensão

Nome YourTab YourTab
ID oiagjhkaiodbkdhiecedjllclkpamkfa
URL Oficial https://chrome.google.com/webstore/detail/yourtab/oiagjhkaiodbkdhiecedjllclkpamkfa
Descrição Keeping Tabs on them Tabs
Tamanho do Arquivo 115 KB
Contagem de Instalações 20
Versão Atual 0.9.0
Última Atualização 2015-08-13
Data de Publicação 2015-08-13
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor zweicoder
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}