ActivityTab: Organize and Save Your Tabs

Enables you to organize and save your tabs for future use.

Qu'est-ce que ActivityTab: Organize and Save Your Tabs ?

ActivityTab: Organize and Save Your Tabs est une extension Chrome développée par Marcus Martin, et sa fonction principale est "Enables you to organize and save your tabs for future use.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ActivityTab: Organize and Save Your Tabs

Téléchargez les fichiers d'extension ActivityTab: Organize and Save Your Tabs 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

                        Organize your tabs by renaming and coloring your tabs!
Save your tabs according to color and relaunch them with a click of a button!

ActivityTab allows you to effectively keep track of your tabs by allowing you to rename, color, and save your tabs. Accessible through the extension popup, commands, or context menu, ActivityTab allows you to quickly modify your tabs to your liking and save them so you can swiftly launch a set of tabs that you want to return to.

Features:
●  Rename a tab
●  Save colored tabs
●  Save all tabs
●  Close tabs of a specified color
●  Creation of tab groups that keep track of your saved tabs

Once set, the name and color of a tab will persist when changing webpages and when the tab is refreshed. To save tabs of a certain color, select a tab with that color and then save it.

Once you install the extension, make sure to refresh your tabs so that the extension will work on them (they do not recognize the extension since they were opened before the extension was installed).

About Permissions: I need the permission “Read and change all your data on the websites you visit” so that the extension can rename and color webpages from any website. I don’t store anything about you as everything is stored on your computer.

Tips:
●  Close tabs that you don’t need! If you save them, you can always access them later!
●  Saving all of your tabs can be really useful when working on a project! By renaming and coloring your tabs, you can open all the tabs for your project and still be organized!
●  Remember that there are many different ways to rename and color your tabs! You can use the popup, commands, and context menu!

Pictures of the extension features can be found above, and detailed explanations of the extension features can be found below.

Enjoy! Please leave a rating and feedback if you found this extension useful or if you have suggestions for improvement!

----------------------------------------------------------------------------------------------------

The extension popup can be found by clicking on the extension’s icon in the toolbar, and the context menu can be found by right-clicking on a page and hovering over the extension’s icon in the menu. The commands can be seen and customized by going to chrome://extensions/shortcuts.

Extension Popup and Context Menu:
●  Rename a tab by entering a name and pressing the enter key
●  Color a tab
     * In the popup, click on the colored buttons to color the tab
     * In the context menu, click on the color’s name to color the tab
●  Save tabs of a specified color by entering a name for the tab group and pressing the enter key
●  Save all of your tabs by entering a name for the tab group and pressing the enter key
●  Close tabs of a specified color by setting the color and clicking on the trash icon
     * Only accessible in the popup
●  Launch the tabs in the current window or in a new window
     * Only accessible in the popup
●  Delete a tab group by clicking on the trash icon
     * Only accessible in the popup

Commands:
●  Ctrl + Left/Right Arrow will cycle through the available colors and color the tab
●  Ctrl + Up Arrow will rename the tab
●  Ctrl + Down Arrow will save the tabs of a specified color

Known bugs/quirks:
●  Some webpages will not be affected by the extension because Google does not allow their extensions to affect those pages (ex: Chrome Web Store pages)
● Changing the color of a webpage will change its bookmark icon as well; you can reset the bookmark icon by clicking the bookmark icon to launch a regular page or by just launching a regular page of the website
●  Webpages may lose their color and name on rare occasions; the only way to fix this is to recolor and rename the tab                    

Informations de Base sur l'Extension

Nom ActivityTab: Organize and Save Your Tabs ActivityTab: Organize and Save Your Tabs
ID pjcfilffmafkccdnheebmgnpgneackho
URL Officiel https://chromewebstore.google.com/detail/activitytab-organize-and/pjcfilffmafkccdnheebmgnpgneackho
Description Enables you to organize and save your tabs for future use.
Taille du Fichier 25.93 KB
Nombre d'Installations 288
Version Actuelle 0.0.1
Dernière Mise à Jour 2018-10-08
Date de Publication 2018-10-08
Évaluation 2.57/5 Total 7 Évaluations
Développeur Marcus Martin
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ActivityTab: Organize and Save Your Tabs",
    "short_name": "ActivityTab",
    "version": "0.0.1",
    "description": "Enables you to organize and save your tabs for future use.",
    "icons": {
        "16": "img\/extension_icon_16.png",
        "48": "img\/extension_icon_48.png",
        "128": "img\/extension_icon_128.png"
    },
    "browser_action": {
        "default_title:": "ActivityTab",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "*:\/\/*\/*",
        "chrome:\/\/favicon\/"
    ],
    "commands": {
        "custom-title-toggle-feature": {
            "suggested_key": {
                "windows": "Ctrl + Up",
                "mac": "Command + Up",
                "chromeos": "Ctrl + Up",
                "linux": "Ctrl + Up"
            },
            "description": "Changes a tab's name."
        },
        "left-key-toggle-feature": {
            "suggested_key": {
                "windows": "Ctrl + Left",
                "mac": "Command + Left",
                "chromeos": "Ctrl + Left",
                "linux": "Ctrl + Left"
            },
            "description": "Cycles through the available colors and colors the tab."
        },
        "right-key-toggle-feature": {
            "suggested_key": {
                "windows": "Ctrl + Right",
                "mac": "Command + Right",
                "chromeos": "Ctrl + Right",
                "linux": "Ctrl + Right"
            },
            "description": "Cycles through the available colors and colors the tab."
        },
        "same-color-tabs-toggle-feature": {
            "suggested_key": {
                "windows": "Ctrl + Down",
                "mac": "Command + Down",
                "chromeos": "Ctrl + Down",
                "linux": "Ctrl + Down"
            },
            "description": "Saves tabs of the current tab color."
        }
    },
    "web_accessible_resources": [
        "img\/red_circle_16.png",
        "img\/green_circle_16.png",
        "img\/blue_circle_16.png",
        "img\/yellow_circle_16.png",
        "img\/orange_circle_16.png",
        "img\/purple_circle_16.png"
    ]
}