twitter画像原寸ボタン

twitter画像原寸ボタン

twitterの画像ツイートにボタンを追加する拡張機能。追加されたボタンを押すとツイートの画像を原寸で新しいタブに表示する。連絡先: @hogextend

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "twitter画像原寸ボタン",
  "version": "6.0.0",
  "description": "twitterの画像ツイートにボタンを追加する拡張機能。追加されたボタンを押すとツイートの画像を原寸で新しいタブに表示する。連絡先: @hogextend",
  "author": "hogashi",
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*",
        "https://tweetdeck.twitter.com/*",
        "https://pro.twitter.com/*",
        "https://pbs.twimg.com/*"
      ],
      "js": [
        "js/main.bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "action": {
    "default_icon": "icons/icon.png",
    "default_title": "twitter画像原寸ボタン",
    "default_popup": "html/popup.html"
  },
  "options_page": "html/popup.html"
}