BlogsterApp

BlogsterApp

Keep updated your presence in your social networks with the dissemination of the relevant content of your blog and news easily!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BlogsterApp",
  "version": "1.0.9.2",
  "description": "Keep updated your presence in your social networks with the dissemination of the relevant content of your blog and news easily!",
  "manifest_version": 2,
  "author": "BlogsterApp, S.L.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_title": "BlogsterApp",
    "default_icon": "img/icon128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "css": [
        "css/app.css"
      ],
      "js": [
        "js/vendor/jquery.js",
        "js/file.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "page": "/background.html"
  },
  "homepage_url": "https://www.blogsterapp.com",
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "*.html"
  ]
}