Use this tool to make quick mockups for potential advertisers.
Notes:
- You can change a recommendation's item title, branding…
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": "Edit Taboola Widget",
"version": "2.0.0",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"19": "icon.png",
"48": "icon.png",
"128": "icon-128.png"
},
"default_title": "Edit Taboola Widget"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab",
"clipboardRead",
"tabs",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"icons": {
"16": "icon.png",
"19": "icon.png",
"48": "icon.png",
"128": "icon-128.png"
}
}