captureItem

captureItem

現在表示されているページの特定のItemのキャプチャーをダウンロードフォルダーに保存

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "captureItem",
  "version": "1.3.3",
  "description": "Capture Item by id/class",
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>",
    "storage",
    "bookmarks"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "capture_item.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "82.0"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  }
}