Tab Monkey

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

Vad är Tab Monkey?

Tab Monkey är en Chrome-tillägg utvecklad av Romy Maxwell, och dess huvudfunktion är "Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!".

Tilläggsskärmbilder

screenshot

Ladda ner Tab Monkey-förlängningens CRX-fil

Ladda ner Tab Monkey-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Tab Monkey Tab Monkey
ID flijjniogdiioocbgekeeplignnfpbee
Officiell webbadress https://chromewebstore.google.com/detail/tab-monkey/flijjniogdiioocbgekeeplignnfpbee
Beskrivning Quick tab navigation. Jump to last tab (previous tab), bookmark tabs, jump jump!
Filstorlek 254 KB
Antal Installationer 261
Aktuell Version 0.2.5
Senast Uppdaterad 2013-01-26
Publiceringsdatum 2013-01-26
Betyg 3.43/5 Totalt 21 Betyg
Utvecklare Romy Maxwell
Betalningssätt free
Stödda Språk 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"
    ]
}