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": "Pinterest Enhanced Slider by VStat",
"version": "1.42",
"description": "Effortlessly browse Pinterest pins full-screen with arrow keys or the icon. Download images directly from the slider.",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"host_permissions": [
"*:\/\/*.pinterest.com\/*",
"*:\/\/*.pinimg.com\/*",
"<all_urls>"
],
"permissions": [
"downloads"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Open Pinterest Enhanced Slider"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.pinterest.com\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"hls.min.js",
"global_content_script.js"
],
"css": [
"global_styles.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"hls.min.js"
],
"matches": [
"*:\/\/*.pinterest.com\/*",
"<all_urls>"
]
}
]
}