Apply a different themes to Pinterest web version.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Pinterest DARK THEME",
"version": "2.2",
"description": "Apply a different themes to Pinterest web version.",
"author": "Iris",
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": "popup/popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.pinterest.com/*",
"https://*.pinterest.fr/*",
"https://*.pinterest.de/*",
"https://*.pinterest.co.uk/*",
"https://*.pinterest.jp/*",
"https://*.pinterest.ru/*",
"https://*.pinterest.cn/*",
"https://*.pinterest.pt/*",
"https://*.pinterest.it/*",
"https://*.pinterest.es/*",
"https://*.pinterest.ca/*",
"https://*.pinterest.com.au/*",
"https://*.pinterest.at/*",
"https://*.pinterest.ch/*",
"https://*.pinterest.cl/*",
"https://*.pinterest.co.kr/*",
"https://*.pinterest.com.mx/*",
"https://*.pinterest.dk/*",
"https://*.pinterest.ie/*",
"https://*.pinterest.net/*",
"https://*.pinterest.nz/*",
"https://*.pinterest.ph/*",
"https://*.pinterest.se/*"
],
"css": [
"main.css"
],
"js": [
"main.js"
]
}
]
}