新着記事一覧

新着記事一覧

閲覧中のホームページの新着記事一覧を表示します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "新着記事一覧",
  "version": "1",
  "permissions": [
    "tabs"
  ],
  "page_action": {
    "default_title": "新着記事一覧",
    "default_popup": "popup.html",
    "default_icon": "./icons/16.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "sandbox": {
    "pages": [
      "search.html"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "./icons/16.png",
    "48": "./icons/48.png",
    "128": "./icons/128.png"
  },
  "description": "閲覧中のホームページの新着記事一覧を表示します。"
}