ArticleMixer

ArticleMixer

Get articles in 1 sec with only RIGHT click!! No worry about copy and paste all the time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "back/database.js",
      "back/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "front/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "front/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "__MSG_meta_extension_description__",
  "default_locale": "zh_TW",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "notifications",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2,
  "name": "__MSG_meta_extension_name__",
  "version": "2.2"
}