Hindstamps for Blogs

Hindstamps for Blogs

Lets you place hindstamps on chosen text straight out of your favorite WYSIWYG editor, leaving links that can be saved as-is.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hindstamps for Blogs",
  "short_name": "Hindstamps",
  "description": "Lets you place hindstamps on chosen text straight out of your favorite WYSIWYG editor, leaving links that can be saved as-is.",
  "version": "1.0.0",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Attach a hindstamp to selection"
  },
  "background": {
    "scripts": [
      "cryptopp.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "qrcode.js",
        "ser.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "clipboardWrite",
    "clipboardRead",
    "activeTab"
  ],
  "web_accessible_resources": [
    "qrcode.html",
    "stamp.html",
    "wait.html",
    "result.html",
    "load.gif",
    "back.jpg",
    "crack-stamp.png"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  }
}