No
simply because the manifest in a Chrome extension is pure JSON, meaning it's only parsed as text and cannot contain other data types or literals that aren't allowed by the strict JSON specifications. So you cannot include functions, and neither can you have one that would be called to return a value.
You cannot even enter comments either (actually, it seems like you can have comments now, but it wasn't the case earlier).
A way for you to achieve your goal would be too provide a web service that generates the extension on demand. It would populate a manifest.json on a per-user basis, and zip and sign your extension. But then it wouldn't be installable with the Chrome Web Store and you'd need to host it yourself.