Refresh Active Frame

Refresh Active Frame

Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Refresh Active Frame",
  "description": "Refresh active frame or ifrmae with keyboard shortcut, fallback to refresh page if active element is not a frame",
  "version": "1.1",
  "icons": {
    "128": "icon-128.png"
  },
  "author": "howang",
  "homepage_url": "https://www.howang.hk/",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon-19.png",
    "default_title": "Refresh Active Frame"
  },
  "commands": {
    "refresh-active-frame": {
      "suggested_key": {
        "default": "Alt+Shift+R",
        "mac": "Command+MacCtrl+R"
      },
      "description": "Refresh Active Frame"
    }
  },
  "permissions": [
    "activeTab",
    "scripting"
  ]
}