Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Open Frame",
"manifest_version": 2,
"description": "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.",
"version": "8resigned1",
"permissions": [
"clipboardWrite",
"contextMenus"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{c853c31a-d96d-4394-bff3-da25ba9ab8b9}"
}
}
}