Save Pinned Tabs

Save your current pinned tabs.

Co to jest Save Pinned Tabs?

Save Pinned Tabs to rozszerzenie Chrome opracowane przez save-pinned, a jego główną funkcją jest „Save your current pinned tabs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Save Pinned Tabs

Pobierz pliki rozszerzeń Save Pinned Tabs 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

                        This extension allows you to save your current pinned tabs as a set. You can then load the pinned tab set on any window that has the extension enabled. You can also set one of your tab sets to be auto-loaded on browser start. Extension syncing is supported.                    

Podstawowe informacje o rozszerzeniu

Nazwa Save Pinned Tabs Save Pinned Tabs
ID anmidgajdonkgmmilbccfefkfieajakd
Oficjalny URL https://chromewebstore.google.com/detail/save-pinned-tabs/anmidgajdonkgmmilbccfefkfieajakd
Opis Save your current pinned tabs.
Rozmiar pliku 116 KB
Liczba instalacji 26,480
Aktualna Wersja 1.1.3
Ostatnia Aktualizacja 2021-03-09
Data Publikacji 2018-10-07
Ocena 4.48/5 Łącznie 89 Oceny
Deweloper save-pinned
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jmakila/SavePinned
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save Pinned Tabs",
    "short_name": "Save Pinned",
    "version": "1.1.3",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    },
    "description": "Save your current pinned tabs.",
    "icons": {
        "128": "images\/icon_128.png",
        "64": "images\/icon_64.png",
        "32": "images\/icon_32.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "128": "images\/icon_128.png",
            "64": "images\/icon_64.png",
            "32": "images\/icon_32.png"
        },
        "default_popup": "popup.html",
        "default_title": "Save pinned tabs"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "functions.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true,
        "open_in_tab": true
    }
}