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",
"name": "Save and read it later - Email to Me",
"version": "0.0.8",
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"64": "assets\/icon64.png",
"128": "assets\/icon128.png"
},
"description": "Send ad-free articles directly to your email inbox.",
"manifest_version": 3,
"background": {
"service_worker": "back.js",
"type": "module"
},
"permissions": [
"contextMenus",
"storage"
],
"host_permissions": [
"http:\/\/email.synctrack.top\/*"
],
"options_page": ".\/options.html",
"web_accessible_resources": [
{
"resources": [
"options.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"lib\/chrome-browser-polyfill.js",
"lib\/single-file-frames.js",
"lib\/single-file-extension-frames.js"
],
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"lib\/chrome-browser-polyfill.js",
"lib\/single-file-bootstrap.js",
"lib\/single-file-extension-core.js",
"lib\/single-file.js"
],
"all_frames": false
},
{
"css": [],
"js": [
"js\/Readability.js",
"js\/jquery.min.js",
"js\/core.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
]
}