guysoft / FullPageOS

A raspberrypi distro to display a full page browser on boot
GNU General Public License v3.0
3.9k stars 241 forks source link

Login #82

Closed albertvveld closed 5 years ago

albertvveld commented 8 years ago

is it possible to auto login on websites?

guysoft commented 8 years ago

Same as chrome browser. You can install an extension to do that, for example: https://chrome.google.com/webstore/detail/auto-login/kjdgohfkopafhjmmlbojhaabfpndllgk?hl=en

monotek commented 7 years ago

Why not use xdotool as its installed anyway?

Example to do a google search:

#!/bin/bash

PAGE_URL="https://www.google.com"
PAGE_FORM1="Fullpageos"

xdotool windowactivate --sync $(xdotool search --onlyvisible --name chromium)
xdotool key CTRL+l
xdotool type ${PAGE_URL}
xdotool key Return
sleep 1
xdotool key CTRL+a
xdotool key Delete
xdotool type ${PAGE_FORM1}
xdotool key Return
guysoft commented 7 years ago

You can also use chromium to save logins (open a window with ctrl-t).

Also any chrome extension that saves passwordsM

monotek commented 7 years ago

Yes, but it doesn't feels save to trust some chrome app and give them my passwords.

guysoft commented 7 years ago

Well, i can't build anything beyond that myself, and you are using my distro (unless you built it yourself).

guysoft commented 7 years ago

Closing if no reply

jeffykle commented 5 years ago

Having trouble using xdotool: Failed creating new xdo instance Error: Can't open display: (null) edit: nevermind first had to export DISPLAY=:0

Norfeldt commented 2 years ago

(I know that the thread is old, but just in case this could be of any help)

If it's an Chromium login issue (which I had a lot of struggle with) then try:

Chromium settings->Advanced->Turn off Allow Chromium sign-in.

For other logins and if you don't wanna use some chrome extensions. Then you might be able to use chromes puppeteer recorder and see of you can trigger that to run in chromium,

guysoft commented 2 years ago

Might be worth adding that in to the wiki on this repo