This is an Open-AI ChatGPT powerful tool to give you the AI magic on Pinterest™ for marketing promotion.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
"icons": {
"128": "icons/logo.png"
},
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_title": "GPT Popup",
"default_icon": {
"128": "icons/logo.png"
}
},
"commands": {
"toggle_PinterestChatGPT": {
"description": "Run PinterestChatGPT on the current page.",
"suggested_key": {
"chromeos": "Ctrl+M",
"default": "Ctrl+M",
"linux": "Ctrl+M",
"mac": "Command+M",
"windows": "Ctrl+M"
}
}
},
"content_scripts": [
{
"matches": [
"*://*.pinterest.com/*"
],
"js": [
"js/content-script.js"
],
"css": [],
"run_at": "document_idle"
},
{
"matches": [
"*://*.openai.com/*"
],
"js": [
"js/chatgpt-script.js"
],
"css": [],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"icons/*"
],
"matches": [
"*://*.pinterest.com/*",
"*://*.openai.com/*",
"*://*.linkedradar.com/*"
]
}
],
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"*://*.pinterest.com/*",
"*://*.openai.com/*",
"*://*.linkedradar.com/*"
],
"version": "1.2.12",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}