YourTab

Keeping Tabs on them Tabs

What is YourTab?

YourTab is a Chrome extension developed by zweicoder, and its main feature is "Keeping Tabs on them Tabs".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download YourTab Extension CRX File

Download YourTab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 !                    

Extension Basic Information

Name YourTab YourTab
ID oiagjhkaiodbkdhiecedjllclkpamkfa
Official URL https://chrome.google.com/webstore/detail/yourtab/oiagjhkaiodbkdhiecedjllclkpamkfa
Description Keeping Tabs on them Tabs
File Size 115 KB
Installation Count 20
Current Version 0.9.0
Last Updated 2015-08-13
Publish Date 2015-08-13
Rating 5.00/5 Total 4 Ratings
Developer zweicoder
Payment Type free
Supported Languages 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"
    ]
}