take Me there (tMt)

take Me there (tMt)

tMt is a search enhancement tool, designed to save you time while using Google Search by making search quicker and more direct.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "take Me there (tMt)",
  "version": "0.01.025",
  "manifest_version": 2,
  "description": "tMt is a search enhancement tool, designed to save you time while using Google Search by making search quicker and more direct.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_security_policy": "script-src 'self' ajax.googleapis.com/; object-src 'self'",
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>",
    "*://*/"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon16.png"
    },
    "default_title": "take Me there (tMt) V001.025.00"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "jquery341min.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "iframe.js",
    "iframe.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery341min.js",
        "content.js",
        "driver.js",
        "test.js"
      ],
      "run_at": "document_start"
    }
  ]
}