SaveTabs

Save the tabs in your current window to a new, timestamped, bookmarks folder.

Co to jest SaveTabs?

SaveTabs to rozszerzenie Chrome opracowane przez Chris Dzombak, a jego główną funkcją jest „Save the tabs in your current window to a new, timestamped, bookmarks folder.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SaveTabs

Pobierz pliki rozszerzeń SaveTabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Saves the tabs in your current window to a new bookmarks folder, named based on the current date & time.

You can choose where new bookmarks folders are created. To change that setting, just right-click on the SaveTabs button and select "Options".                    

Podstawowe informacje o rozszerzeniu

Nazwa SaveTabs SaveTabs
ID ciemojomefnilhnidpjknolhbefbdoie
Oficjalny URL https://chromewebstore.google.com/detail/savetabs/ciemojomefnilhnidpjknolhbefbdoie
Opis Save the tabs in your current window to a new, timestamped, bookmarks folder.
Rozmiar pliku 95.11 KB
Liczba instalacji 3,455
Aktualna Wersja 0.5
Ostatnia Aktualizacja 2013-11-06
Data Publikacji 2013-11-05
Ocena 4.67/5 Łącznie 24 Oceny
Deweloper Chris Dzombak
Typ Płatności free
Strona Rozszerzenia http://github.com/cdzombak/SaveTabs
Adres URL Strony Pomocy http://github.com/cdzombak/SaveTabs/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SaveTabs",
    "author": "Chris Dzombak ",
    "manifest_version": 2,
    "version": "0.5",
    "description": "Save the tabs in your current window to a new, timestamped, bookmarks folder.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Save tabs in a new bookmarks folder"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "homepage_url": "http:\/\/github.com\/cdzombak\/SaveTabs",
    "options_page": "options.html",
    "permissions": [
        "bookmarks",
        "tabs",
        "alarms"
    ],
    "icons": {
        "16": "icon\/icon-16.png",
        "48": "icon\/icon-48.png",
        "128": "icon\/icon-128.png"
    }
}