Blogspot Quickedit Links

Blogspot Quickedit Links

Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Blogspot Quickedit Links",
  "description": "Adds quickedit links for the new Contempo, Soho, Emporio and Notable themes, for a user-specified set of blogspot URLs.",
  "version": "1.1",
  "icons": {
    "16": "logo_blogger_color_1x_web_16dp.png",
    "32": "logo_blogger_color_1x_web_32dp.png",
    "48": "logo_blogger_color_1x_web_48dp.png",
    "96": "logo_blogger_color_1x_web_96dp.png"
  },
  "browser_action": {
    "default_icon": "popupicon.png",
    "default_popup": "popup.html",
    "default_title": "Click to edit!"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage"
  ]
}