Save Pinned Tabs
Save your current pinned tabs.
Co je Save Pinned Tabs?
Save Pinned Tabs je rozšíření Chrome vyvinuté save-pinned, a jeho hlavní funkcí je „Save your current pinned tabs.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Save Pinned Tabs
Stáhněte si soubory rozšíření Save Pinned Tabs ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Save Pinned Tabs |
ID | anmidgajdonkgmmilbccfefkfieajakd |
Oficiální URL | https://chromewebstore.google.com/detail/save-pinned-tabs/anmidgajdonkgmmilbccfefkfieajakd |
Popis | Save your current pinned tabs. |
Velikost souboru | 116 KB |
Počet instalací | 26,480 |
Aktuální Verze | 1.1.3 |
Poslední Aktualizace | 2021-03-09 |
Datum Vydání | 2018-10-07 |
Hodnocení | 4.48/5 Celkem 89 Hodnocení |
Vývojář | save-pinned |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/jmakila/SavePinned |
Podporované Jazyky | 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 } } |