Inspect and view changes in Press Jockey Copilot source codes across current and past versions
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": "Press Jockey Copilot",
"version": "0.3.3",
"description": "Use advanced DLM Ai Technology to amplify your press outreach on any PR or guest blogging platform and grow your business fast!",
"permissions": [
"storage",
"alarms",
"cookies",
"tabs"
],
"host_permissions": [
"https://copilot.pressjockey.com/*",
"http://localhost:8000/*",
"http://localhost:5001/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"ai-generation-content/ai-generation-content.js"
],
"css": [
"content.css"
]
}
],
"icons": {
"16": "images/logo/logo16.png",
"32": "images/logo/logo32.png",
"48": "images/logo/logo48.png",
"128": "images/logo/logo128.png"
},
"action": {
"default_icon": "images/logo/logo128.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background/background.js"
},
"options_page": "options.html"
}