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",
"action": {
"default_title": "Link Preview Plus",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/\/*"
],
"exclude_matches": [
"*:\/\/*.google.com\/webstore*",
"*:\/\/chrome.google.com\/*"
],
"css": [
"preview.css"
],
"js": [
"preview.js"
],
"all_frames": false,
"run_at": "document_end"
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "disable-csp",
"enabled": true,
"path": "rules.json"
}
]
},
"host_permissions": [
"<all_urls>"
],
"icons": {
"512": "icon.png"
},
"manifest_version": 3,
"name": "Link Preview Plus",
"options_page": "options.html",
"permissions": [
"tabs",
"history",
"storage",
"scripting",
"declarativeNetRequest"
],
"version": "1.0.0",
"web_accessible_resources": [
{
"resources": [
"preview.html",
"iframe.js",
"options.html",
"popup.html",
"popup.css",
"documentation.html"
],
"matches": [
"<all_urls>"
]
}
]
}