Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LinkLens - Preview links in floating tabs",
"version": "1.3.5",
"description": "Ctrl+click or long-press any link to preview it in a floating window.",
"permissions": [
"declarativeNetRequest",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon.png",
"32": "icons\/icon.png"
}
},
"icons": {
"16": "icons\/icon.png",
"32": "icons\/icon.png"
}
}