Flashbackr

Flashbackr

Flashbackr is the simplest way to capture and organise all your content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flashbackr",
  "short_name": "Flashbackr",
  "version": "2.0.18",
  "manifest_version": 2,
  "minimum_chrome_version": "6",
  "author": "flashbackr.com",
  "description": "Flashbackr is the simplest way to capture and organise all your content",
  "icons": {
    "16": "images/fbkr-16.png",
    "19": "images/fbkr-19.png",
    "48": "images/fbkr-48.png",
    "128": "images/fbkr-128.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "cookies",
    "webRequest",
    "storage",
    "<all_urls>"
  ],
  "commands": {
    "send-item-or-bookmark": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "description": "Send page item or bookmark"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*",
        "ftp://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://player.vimeo.com/video/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/embed/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "https://www.instagram.com/p/*/embed*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "https://vine.co/*/embed/simple"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "https://www.facebook.com/plugins/post.php?href=*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "https://vk.com/widget_post.php?*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "http://www.slideshare.net/slideshow/embed_code/key/*",
        "https://www.slideshare.net/slideshow/embed_code/key/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://flashbackr.com/home?*",
      "https://flashbackr.com/",
      "https://flashbackr.com/browser-hotspot/*"
    ]
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Capture content from websites in 1 click",
    "default_icon": {
      "19": "images/fbkr-19.png",
      "38": "images/fbkr-38.png"
    },
    "default_popup": "popup.html"
  }
}