TextFirst

TextFirst

Loading a web page for text first, then, if possible, click to load an image

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TextFirst",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Loading a web page for text first, then, if possible, click to load an image",
  "icons": {
    "16": "icon-16x16.png",
    "48": "icon-48x48.png",
    "128": "icon-128x128.png"
  },
  "browser_action": {
    "default_title": "TextFirst",
    "default_icon": "icon-19x19.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "bg.png",
    "bg-loading.png"
  ]
}