Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Right Click Opens Link New Tab",
"version": "0.1.0",
"description": "Right Click Opens Link in New Tab in the Correct Order",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"author": "Bill Hedworth",
"minimum_chrome_version": "88",
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content_script.js"
],
"all_frames": true
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "config\/settings.html",
"default_icon": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
},
"options_ui": {
"page": "config\/settings.html",
"open_in_tab": true
},
"short_name": "Tab Opener"
}