Tipila

Tipila

Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tipila",
  "version": "1.0.0.1010",
  "manifest_version": 2,
  "description": "Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed.",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "*://*/*",
    "webRequest",
    "tabs",
    "webNavigation"
  ],
  "web_accessible_resources": [
    "styles/jquery.toastmessage.css",
    "result.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "styles/jquery.toastmessage.css"
      ],
      "js": [
        "scripts/contentscript.js",
        "scripts/jquery-1.7.2.min.js",
        "scripts/jquery.toastmessage.js"
      ],
      "all_frames": false
    }
  ]
}