Freezetab

Freezetab is a tool for saving content from the web.

Qu'est-ce que Freezetab ?

Freezetab est une extension Chrome développée par https://www.freezetab.com, et sa fonction principale est "Freezetab is a tool for saving content from the web.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Freezetab

Téléchargez les fichiers d'extension Freezetab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Freezetab Freezetab
ID ecpipjjckcegdmapdifgigmempnikcjg
URL Officiel https://chromewebstore.google.com/detail/freezetab/ecpipjjckcegdmapdifgigmempnikcjg
Description Freezetab is a tool for saving content from the web.
Taille du Fichier 1.13 MB
Nombre d'Installations 6,570
Version Actuelle 2.0.4
Dernière Mise à Jour 2023-10-30
Date de Publication 2018-06-04
Évaluation 3.64/5 Total 55 Évaluations
Développeur https://www.freezetab.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.freezetab.com/privacy.html
Langues Prises en Charge 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."
        }
    }
}