Tab Monkey

Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!

Hvad er Tab Monkey?

Tab Monkey er en Chrome-udvidelse udviklet af Romy Maxwell, og dens hovedfunktion er "Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!".

Udvidelsesskærmbilleder

screenshot

Download Tab Monkey-udvidelses-CRX-fil

Download Tab Monkey-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        If you have a lot of tabs open, the ability to bookmark tabs and jump directly to them, as well as to the previously active tab, will save you a lot of time. This extension does that.

I personally make GMail #1, music streaming (beastmode.fm) #2, Netflix #3 and quickly bounce between them and 50 other tabs.

[Updated 1/26/12 to work across multiple windows]                    

Grundlæggende oplysninger om udvidelsen

Navn Tab Monkey Tab Monkey
ID flijjniogdiioocbgekeeplignnfpbee
Officiel URL https://chromewebstore.google.com/detail/tab-monkey/flijjniogdiioocbgekeeplignnfpbee
Beskrivelse Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!
Filstørrelse 254 KB
Antal Installationer 261
Nuværende Version 0.2.5
Senest Opdateret 2013-01-26
Udgivelsesdato 2013-01-26
Bedømmelse 3.43/5 Samlet 21 Bedømmelser
Udvikler Romy Maxwell
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Monkey",
    "version": "0.2.5",
    "manifest_version": 2,
    "description": "Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "notifications"
    ],
    "icons": {
        "16": "img\/16x16.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "web_accessible_resources": [
        "img\/icon.png"
    ]
}