Hello everyone,
For the Chrome browser, I've created a PLIST for installing the extension and a second one for configuring the extension, and it works perfectly.
That's why I'd like to do the same for Firefox. The PLIST for installation works. But for the extension configuration PLIST I don't know how to do it? I can't find any information about this if it's possible.
Here's what I did for Chrome :
Preference domain : com.google.Chrome.extensions.IDextension
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ConfigJson</key>
<string>
{
"backend_servers": [
{
"title": "Exemple title",
"url": "https://exemple.com"
}
],
"base_url": "https://exemple.com",
"allow_custom_server": false,
"allow_registration": true,
"allow_lost_password": true
}
</string>
</dict>
</plist>
