Word Extender

Word Extender

Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Word Extender",
  "description": "Extension that replaces strings and/or words with longer ones. This can be handy when developing for responsive design",
  "version": "1.1",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://*/*",
    "activeTab"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "name": "Extend words",
    "default_icon": "icons/icon16.png",
    "default_title": "Word Extender",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/page.css"
      ]
    }
  ]
}