Search Word Tabs History

Adds a history feature to the Search Word Tabs extension, allowing users to view past search queries and revisit previous search results.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "permissions": [
    "find",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "32": "icons/logo_32.png",
    "64": "icons/logo_64.png",
    "128": "icons/logo_128.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_extensionName__",
    "default_icon": {
      "64": "icons/logo_64.png"
    }
  },
  "version": "1.0",
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "91.1.0",
      "id": "{56e18e2e-7a6f-4a3e-b75a-c61d074ed60b}"
    }
  }
}