Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Tap To Tab",
"author": "Terry Yuen",
"version": "0.5.5",
"description": "__MSG_extensionDescription__",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"20": "openinnewtab_20.png",
"48": "openinnewtab_48.png",
"96": "openinnewtab_96.png",
"128": "openinnewtab_128.png"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"all_frames": true,
"run_at": "document_start"
}
],
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}