CraftyText

CraftyText

This extension allows the user's text to be displayed on screen on top of a web page in large type

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon16.png"
  },
  "content_scripts": [
    {
      "css": [
        "jquery-ui-1.11.4.custom/jquery-ui.css",
        "jquery-ui-1.11.4.custom/jquery-ui.structure.css",
        "jquery-ui-1.11.4.custom/jquery-ui.theme.css",
        "style.css"
      ],
      "js": [
        "jquery.js",
        "jquery-ui-1.11.4.custom/jquery-ui.js",
        "keypress-2.1.0.min.js",
        "lodash.js",
        "qrcode.js",
        "script.js"
      ],
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "This extension allows the user's text to be displayed on screen on top of a web page in large type",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "CraftyText",
  "permissions": [
    "activeTab"
  ],
  "version": "3.0",
  "web_accessible_resources": [
    "css/*",
    "style.css",
    "jquery-ui-1.11.4.custom/jquery-ui.css",
    "jquery-ui-1.11.4.custom/jquery-ui.structure.css",
    "jquery-ui-1.11.4.custom/jquery-ui.theme.css",
    "jquery-ui-1.11.4.custom/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_glass_50_3baae3_1x400.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_glass_80_d7ebf9_1x400.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_glass_100_e4f1fb_1x400.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_highlight-hard_70_000000_1x100.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_highlight-soft_25_ffef8f_1x100.png",
    "jquery-ui-1.11.4.custom/images/ui-bg_highlight-soft_100_deedf7_1x100.png",
    "jquery-ui-1.11.4.custom/images/ui-icons_2e83ff_256x240.png",
    "jquery-ui-1.11.4.custom/images/ui-icons_3d80b3_256x240.png",
    "jquery-ui-1.11.4.custom/images/ui-icons_72a7cf_256x240.png",
    "jquery-ui-1.11.4.custom/images/ui-icons_2694e8_256x240.png",
    "jquery-ui-1.11.4.custom/images/ui-icons_ffffff_256x240.png"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com ; object-src 'self'"
}