Tab Monkey

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

Was ist Tab Monkey?

Tab Monkey ist eine Chrome-Erweiterung, die von Romy Maxwell entwickelt wurde, und ihr Hauptmerkmal ist "Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!".

Erweiterungsscreenshots

screenshot

Tab Monkey-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Monkey-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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]                    

Grundlegende Informationen zur Erweiterung

Name Tab Monkey Tab Monkey
ID flijjniogdiioocbgekeeplignnfpbee
Offizielle URL https://chromewebstore.google.com/detail/tab-monkey/flijjniogdiioocbgekeeplignnfpbee
Beschreibung Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!
Dateigröße 254 KB
Installationsanzahl 261
Aktuelle Version 0.2.5
Letztes Update 2013-01-26
Veröffentlichungsdatum 2013-01-26
Bewertung 3.43/5 Insgesamt 21 Bewertungen
Entwickler Romy Maxwell
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}