Link Yrself Clean

Link Yrself Clean

Bring a link to the front if it's already in an open tab. Useful for quickly showing pre-loaded tabs during presentations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Yrself Clean",
  "description": "Bring a link to the front if it's already in an open tab. Useful for quickly showing pre-loaded tabs during presentations.",
  "version": "0.9",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://0.0.0.0:8000/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "js/content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "imgs/icon-19.png",
      "48": "imgs/icon-48.png",
      "128": "imgs/icon-128.png"
    },
    "default_popup": "pages/popup.html"
  },
  "web_accessible_resources": [
    "/css/styles.js"
  ],
  "icons": {
    "19": "imgs/icon-19.png",
    "48": "imgs/icon-48.png",
    "128": "imgs/icon-128.png"
  }
}