Freezetab

Freezetab is a tool for saving content from the web.

¿Qué es Freezetab?

Freezetab es una extensión de Chrome desarrollada por https://www.freezetab.com, y su función principal es "Freezetab is a tool for saving content from the web.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Freezetab

Descarga archivos de extensión Freezetab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Freezetab is a browser extension designed to help you save content from the web. You can use the extension to save links from your tabs and tab groups, articles, quotes from websites, and even RSS and Atom feeds.

★ Privacy

This extension has a detailed privacy policy which you can read on our website, but the gist of it is that your private data won't be sent to our servers unless you log in to our website. You can absolutely use this extension 100% locally, and even without an internet connection.

★ Save tabs and tab groups

Saving tabs and tab groups is the primary feature of this extension. The extension can save and reopen any of your tabs and tab groups. You can also choose to close the tabs after saving. The extension will remember the names and colors of your tab groups as well as the links they contain, and restore them appropriately.

While choosing which tabs to save, you can select the current tab, everything except the current tab, everything to the left or right of the current tab, tabs you've highlighted, or just specific tabs you've selected within the extension. The extension allows you to choose tabs from specific windows as well.

★ Save articles

This extension empowers you to save articles from the web. The extension contains a polished article reader which not only allows you to read content from the web, but to edit that content. The article editor is a full rich text editor with the ability to add notes, highlight text, and apply complex text styling. You can apply all of the traditional text styles like bold, italic, underline, and strikethrough, as well as more complex styling constructs like lists, block quotes, links, and headers. If you've saved an article which contains source code, the article reader will even apply syntax highlighting with support for most popular programming languages!

★ Save quotes

The extension can save quotes from websites. Just select a passage of text on a website, right click, and then click 'Save Selected Text'. The extension will save the selected text, as well as a text fragment link. When you click the link in a browser that supports text fragments, it'll take you to the original website and visually highlight the text you saved.

★ Feeds

The extension can notify you if it finds an RSS or Atom feed on the current page (by updating the extension's icon with the number of feeds found). If you save a feed, the extension will fetch new links from the feed in the background, and you can choose to save or delete any of the fetched links.

★ Sort by site, tag, or time period

Want to find all of your saved data from a specific site, or annotated with a specific tag? This extension allows you to filter your data based on specific sites and tags, as well as view your data chronologically in a calendar view.

★ Search

The extension supports fast full-text search, which you can access quickly from within the extension popup with a keyboard shortcut.

★ Keyboard Shortcuts

You can open the extension by holding Command + Shift + O on a Mac or Ctrl + Shift + O in any other operating system. Once the extension popup is open, you can use shortcuts to:

- Save All Tabs
- Save the Current Tab
- Save Everything Except the Current Tab
- Save an Article
- Search
- Open the extension popup in a new tab
- Toggle Privacy Mode

★ Sharing

Securely and privately share your data with friends! Click the settings icon next to any collection of saved data to share that collection with others. The extension will generate a shareable url which compresses the data and appends it to the hash portion of the url. When you (or someone else) open the link in your browser, the page's code will decompress the data and present it to you. Data stored in the hash portion of a url is never sent to external servers by web browsers, which means only the people you share the link with will ever have access to that data.                    

Información Básica de la Extensión

Nombre Freezetab Freezetab
ID ecpipjjckcegdmapdifgigmempnikcjg
URL Oficial https://chromewebstore.google.com/detail/freezetab/ecpipjjckcegdmapdifgigmempnikcjg
Descripción Freezetab is a tool for saving content from the web.
Tamaño del Archivo 1.13 MB
Cantidad de Instalaciones 6,570
Versión Actual 2.0.4
Última Actualización 2023-10-30
Fecha de Publicación 2018-06-04
Calificación 3.64/5 Total de 55 Calificaciones
Desarrollador https://www.freezetab.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://www.freezetab.com/privacy.html
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Freezetab is a tool for saving content from the web.",
    "manifest_version": 3,
    "name": "Freezetab",
    "version": "2.0.4",
    "background": {
        "service_worker": "bg3.js"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'; img-src * data:; style-src 'unsafe-inline'; connect-src *"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "optional_permissions": [
        "tabs",
        "tabGroups"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage",
        "scripting",
        "contextMenus",
        "alarms"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+O"
            },
            "description": "Open Freezetab."
        }
    }
}