This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# You may of course prefer not to trust this script and do the below | |
# manually, step by step, with an editor, etc., ;-). | |
# | |
# make /system/bin writable | |
# | |
DISK_DEVICE=`adb shell mount | grep '/system' | awk '{ print $1 }'` | |
adb shell "mount -o remount,rw $DISK_DEVICE /system" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pref("dom.payment.provider.0.name", "firefoxmarket"); | |
pref("dom.payment.provider.0.description", "marketplace.firefox.com"); | |
pref("dom.payment.provider.0.uri", "https://marketplace.firefox.com/mozpay/?req="); | |
pref("dom.payment.provider.0.type", "mozilla/payments/pay/v1"); | |
pref("dom.payment.provider.0.requestMethod", "GET"); |