Examine source code of Tree Style Tab RainbowTabsFork

Inspect and view changes in Tree Style Tab RainbowTabsFork source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__ Rainbow Tabs",
  "version": "2.4.21resigned1",
  "author": "YUKI \"Piro\" Hiroshi",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "activeTab",
    "contextMenus",
    "contextualIdentities",
    "cookies",
    "notifications",
    "sessions",
    "storage",
    "tabs",
    "theme"
  ],
  "optional_permissions": [
    "<all_urls>",
    "bookmarks"
  ],
  "icons": {
    "16": "resources/16x16-light.svg",
    "20": "resources/20x20-light.svg",
    "24": "resources/24x24-light.svg",
    "64": "resources/icon64.png",
    "94": "resources/icon94.png"
  },
  "background": {
    "page": "background/background.html"
  },
  "browser_action": {
    "default_title": "__MSG_sidebarTitle__",
    "default_icon": {
      "16": "resources/16x16-light.svg",
      "20": "resources/20x20-light.svg",
      "24": "resources/24x24-light.svg"
    },
    "browser_style": true,
    "theme_icons": [
      {
        "light": "resources/16x16-dark.svg",
        "dark": "resources/16x16-light.svg",
        "size": 16
      },
      {
        "light": "resources/20x20-dark.svg",
        "dark": "resources/20x20-light.svg",
        "size": 20
      },
      {
        "light": "resources/24x24-dark.svg",
        "dark": "resources/24x24-light.svg",
        "size": 24
      }
    ]
  },
  "sidebar_action": {
    "default_title": "__MSG_sidebarTitle__",
    "default_icon": {
      "16": "resources/16x16-light.svg",
      "20": "resources/20x20-light.svg",
      "24": "resources/24x24-light.svg"
    },
    "default_panel": "sidebar/sidebar.html",
    "browser_style": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "F1"
      },
      "description": "__MSG_sidebarToggleDescription__"
    },
    "reloadTree": {
      "description": "__MSG_context_reloadTree_label__"
    },
    "reloadDescendants": {
      "description": "__MSG_context_reloadDescendants_label__"
    },
    "closeTree": {
      "description": "__MSG_context_closeTree_label__"
    },
    "closeDescendants": {
      "description": "__MSG_context_closeDescendants_label__"
    },
    "closeOthers": {
      "description": "__MSG_context_closeOthers_label__"
    },
    "collapseAll": {
      "description": "__MSG_context_collapseAll_label__"
    },
    "expandAll": {
      "description": "__MSG_context_expandAll_label__"
    },
    "bookmarkTree": {
      "description": "__MSG_context_bookmarkTree_label__"
    },
    "newIndependentTab": {
      "description": "__MSG_tabbar_newTabButton_tooltip__: __MSG_tabbar_newTabAction_independent_label__"
    },
    "newChildTab": {
      "description": "__MSG_tabbar_newTabButton_tooltip__: __MSG_tabbar_newTabAction_child_label__"
    },
    "newSiblingTab": {
      "description": "__MSG_tabbar_newTabButton_tooltip__: __MSG_tabbar_newTabAction_sibling_label__"
    },
    "newNextSiblingTab": {
      "description": "__MSG_tabbar_newTabButton_tooltip__: __MSG_tabbar_newTabAction_nextSibling_label__"
    },
    "newContainerTab": {
      "description": "__MSG_tabbar_newTabWithContexualIdentity_tooltip__"
    },
    "indent": {
      "description": "__MSG_command_indent__"
    },
    "outdent": {
      "description": "__MSG_command_outdent__"
    },
    "tabMoveUp": {
      "description": "__MSG_command_tabMoveUp__"
    },
    "treeMoveUp": {
      "description": "__MSG_command_treeMoveUp__"
    },
    "tabMoveDown": {
      "description": "__MSG_command_tabMoveDown__"
    },
    "treeMoveDown": {
      "description": "__MSG_command_treeMoveDown__"
    },
    "focusPrevious": {
      "description": "__MSG_command_focusPrevious__"
    },
    "focusPreviousSilently": {
      "description": "__MSG_command_focusPreviousSilently__"
    },
    "focusNext": {
      "description": "__MSG_command_focusNext__"
    },
    "focusNextSilently": {
      "description": "__MSG_command_focusNextSilently__"
    },
    "tabbarUp": {
      "suggested_key": {
        "default": "Alt+Shift+Up"
      },
      "description": "__MSG_command_tabbarUp__"
    },
    "tabbarPageUp": {
      "suggested_key": {
        "default": "Alt+Shift+PageUp"
      },
      "description": "__MSG_command_tabbarPageUp__"
    },
    "tabbarHome": {
      "suggested_key": {
        "default": "Alt+Shift+Home"
      },
      "description": "__MSG_command_tabbarHome__"
    },
    "tabbarDown": {
      "suggested_key": {
        "default": "Alt+Shift+Down"
      },
      "description": "__MSG_command_tabbarDown__"
    },
    "tabbarPageDown": {
      "suggested_key": {
        "default": "Alt+Shift+PageDown"
      },
      "description": "__MSG_command_tabbarPageDown__"
    },
    "tabbarEnd": {
      "suggested_key": {
        "default": "Alt+Shift+End"
      },
      "description": "__MSG_command_tabbarEnd__"
    }
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    "resources/group-tab.html*"
  ],
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "treestyletab@mz0r",
      "strict_min_version": "57.0"
    }
  }
}