Infinite Monkey

Infinite Monkey

Double click on any element, edit the text and export an .html file. That simple. Created by Edenspiekermann_.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Infinite Monkey",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Double click on any element, edit the text and export an .html file. That simple. Created by Edenspiekermann_.",
  "homepage_url": "http://www.edenspiekermann.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-inactive.png",
    "default_title": "click to start editing"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "icons/*",
    "css/styles.css"
  ]
}