How can I make Chrome allow access to a webcam over http (not https)?

Yes, an admin can override the prompts with a policy. VideoCaptureAllowedUrls Patterns in this list will be matched against the security origin of the requesting URL. If a match is found, access to audio capture devices will be granted without prompt. NOTE: This policy is currently only supported when running in Kiosk mode. On Windows, … Read more

Android: Taking complete control of phone(kiosk mode), is it possible? How?

Yes it is possible but you can not control the behaviour of Home key and end call key. for full screen add android:theme=”@android:style/Theme.NoTitleBar.Fullscreen” to activity tag in manifest file. To disable incoming call you need to listen phone calls: import android.app.Service; import android.os.IBinder; import android.telephony.PhoneStateListener; import android.telephony.TelephonyManager; public class MyPhoneStateListener extends Service{ @Override public IBinder … Read more

Kiosk mode in Android

You can autostart applications on boot by listening to the android.intent.action.BOOT_COMPLETED intent in a BroadcastReceiver and start your Activity from there. In the Activity you can register yourself as the new default homescreen[1] and handle the keys. I think there are some instances that you can’t handle without modifying the framework (like longpress on Home … Read more