fullURL

fullURL

Extension for enter URL in Chrome's fullscreen mode. Press '/', Enter an enjoy!!!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "fullURL",
  "short_name": "fullURL",
  "version": "1.2",
  "description": "Extension for enter URL in Chrome's fullscreen mode. Press '/', Enter an enjoy!!!",
  "author": "Viet Vu",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "third-party/jquery-1.11.2.min.js",
        "js/eventPage.js"
      ],
      "css": [
        "css/main.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "options_ui": {
    "page": "html/option.html",
    "chrome_style": true
  },
  "icons": {
    "16": "icons/icon.png",
    "32": "icons/icon.png",
    "48": "icons/icon.png"
  }
}