Save Pinned Tabs
Save your current pinned tabs.
O que é Save Pinned Tabs?
Save Pinned Tabs é uma extensão do Chrome desenvolvida por save-pinned, e sua principal característica é "Save your current pinned tabs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Save Pinned Tabs
Baixe arquivos de extensão Save Pinned Tabs no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Save Pinned Tabs |
ID | anmidgajdonkgmmilbccfefkfieajakd |
URL Oficial | https://chromewebstore.google.com/detail/save-pinned-tabs/anmidgajdonkgmmilbccfefkfieajakd |
Descrição | Save your current pinned tabs. |
Tamanho do Arquivo | 116 KB |
Contagem de Instalações | 26,480 |
Versão Atual | 1.1.3 |
Última Atualização | 2021-03-09 |
Data de Publicação | 2018-10-07 |
Classificação | 4.48/5 Total de 89 Avaliações |
Desenvolvedor | save-pinned |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jmakila/SavePinned |
Idiomas Suportados | 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 } } |