Inspect and view changes in Freelancer Bid Writer 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
{
"manifest_version": 3,
"name": "Freelancer Bid Writer",
"version": "1.0",
"description": "Write winning bids on Freelancer with our GPT models. Say goodbye to writer's block and hello to more clients.",
"short_description": "Write winning bids on Freelancer like a pro!",
"permissions": [
"scripting",
"tabs",
"storage"
],
"host_permissions": [
"https://*.freelancer.in/*"
],
"icons": {
"128": "assets/logo.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://*.freelancer.in/*"
],
"js": [
"contentScript.js"
]
}
],
"action": {
"default_title": "Bid Writer",
"default_popup": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}