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": "Pinout - Pinterest Downloader",
"version": "1.0.0",
"description": "Download Pinterest videos and images easily. Fast, free, and simple.",
"author": "PinOut",
"homepage_url": "https:\/\/pinout.in",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png"
},
"default_title": "Pinout - Pinterest Downloader"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"*:\/\/*.pinterest.com\/*",
"*:\/\/pinterest.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.pinterest.com\/*",
"*:\/\/pinterest.com\/*"
],
"js": [
"content\/save-pin.js",
"content\/video-download.js"
],
"css": [
"content\/save-pin.css",
"content\/video-download.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"*:\/\/*.pinterest.com\/*"
]
}
]
}