ActivityTab: Organize and Save Your Tabs

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

Hvad er ActivityTab: Organize and Save Your Tabs?

ActivityTab: Organize and Save Your Tabs er en Chrome-udvidelse udviklet af Marcus Martin, og dens hovedfunktion er "Enables you to organize and save your tabs for future use.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download ActivityTab: Organize and Save Your Tabs-udvidelses-CRX-fil

Download ActivityTab: Organize and Save Your Tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn ActivityTab: Organize and Save Your Tabs ActivityTab: Organize and Save Your Tabs
ID pjcfilffmafkccdnheebmgnpgneackho
Officiel URL https://chromewebstore.google.com/detail/activitytab-organize-and/pjcfilffmafkccdnheebmgnpgneackho
Beskrivelse Enables you to organize and save your tabs for future use.
Filstørrelse 25.93 KB
Antal Installationer 288
Nuværende Version 0.0.1
Senest Opdateret 2018-10-08
Udgivelsesdato 2018-10-08
Bedømmelse 2.57/5 Samlet 7 Bedømmelser
Udvikler Marcus Martin
Betalingsmetode free
Understøttede Sprog 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"
    ]
}