Use different paths for content scripts in Info.plist

Hello,


I'm trying to use a diffrent path for my content scripts in the Info.plist file and it dosnt work.


in my info. plist i to do something like this:


<key>SFSafariContentScript</key>

<array>

<dict>

<key>Script</key>

<string>content/script.js</string>

</dict>

</array>


I tried all combination types I could think of:
<string>content\script.js</string>

<string>content//script.js</string>
<string>content\\script.js</string>

Only this works:

<string>script.js</string>


Does app extension support scripts only in the main folder? Or I"m doing something wrong?


Thanks