QUOTE: Life is tough, but so are you.

pinpot

A little bookmark tool

manifest.json (601B)


      1{
      2  "manifest_version": 2,
      3  "name": "Pinpot",
      4  "version": "1.0",
      5  "description": "A place for all your bookmarks.",
      6  "permissions": ["activeTab"],
      7  "browser_action": {
      8    "default_icon": "icon.png",
      9    "default_title": "Pinpot",
     10    "default_popup": "popup.html"
     11  },
     12  "web_accessible_resources": [
     13    "inter.ttf"
     14  ],
     15  "content_scripts": [
     16    {
     17      "matches": ["<all_urls>"],
     18      "js": ["content.js"]
     19    }
     20  ],
     21  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
     22  "browser_specific_settings": {
     23    "gecko": {
     24      "id": "info@soophie.de"
     25    }
     26  }
     27}