Sample Header Ad - 728x90

Android Enthusiasts

Q&A for enthusiasts and power users of the Android operating system

Latest Questions

0 votes
0 answers
48 views
How can I circumvent the character limit set by mobile browsers for a JavaScript prompt() input?
I discovered, to my dismay, that mobile browsers seem to have a different character limit than desktop browsers for JavaScript `prompt()` input. How can I work around it to input my long string on mobile? Here's a nice page for testing: https://javascript.info/alert-prompt-confirm#a-simple-page I us...
I discovered, to my dismay, that mobile browsers seem to have a different character limit than desktop browsers for JavaScript prompt() input. How can I work around it to input my long string on mobile? Here's a nice page for testing: https://javascript.info/alert-prompt-confirm#a-simple-page I used printf '%s ' {1..1250} to generate a suitable test string. Please find the resulting 5142-character string below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
On a Mac desktop's Chrome, the website accepts this input, no problem. On Android, it cuts off the input in the middle of 1222, at 5000 characters, and I'm unable to type more. I've tried Brave, DuckDuckGo, Firefox, Chrome, and Opera. The behavior is the same in all these mobile browsers. Changing to the desktop layout in the browser settings has no effect.
Astaldo (1 rep)
Sep 12, 2025, 03:02 PM • Last activity: Sep 18, 2025, 09:36 AM
3 votes
2 answers
1934 views
How to recover open opera tabs from backup data after phone bricked?
I had more than 200 tabs open on opera and they would normally reopen again, even after reboots. My phone broke, but I have a backup of the external SD Card, internal SD Card, and a backup from TWRP which is of a size of 23.7 GB but does not have an obviously accessible structure. Following the advi...
I had more than 200 tabs open on opera and they would normally reopen again, even after reboots. My phone broke, but I have a backup of the external SD Card, internal SD Card, and a backup from TWRP which is of a size of 23.7 GB but does not have an obviously accessible structure. Following the advice from [another QA](https://android.stackexchange.com/a/184831/96334) , it is possible to concatenate the data.ext4.win000 to data.ext4.win009 files and access them as a tar archive (It's a good idea to cd to where you want the backup to be extracted to first): >
cat data.ext4.win??? | tar xvfi -
> > What this does is concatenate each file matching the pattern > data.ext4.win??? and then pipe the concatenated files to tar for > extraction. the - as the filename tells tar to extract from stdin. The > i option ignores zero blocks which will be in between each archive > file concatenated. > > In this example I used the ext4 formatted data partition. Change > data.ext4 to match the partition you are extracting. Although the tar command exits with
/data/magisk_backup_bd5d0aa87b96353c78a3bf3a455121d0c767089c/boot.img.gz
tar: Exiting with failure status due to previous errors
it extracts quite a few files before this hapens. However, it is probably better to simply extract each of those files on their own without concatenating them, as in the comment by alecxs: > side note: concatenating win* files is wrong, that files are standalone tarball archives Now that I have my /data directory again, I have access to /data/data/com.opera.browser and /data/app/com.opera.browser-2. What do I do with them to extract a list of urls that were open? ### Directory Structures data/data/com.opera.browser
├───app_opera
│   ├───Application Cache
│   │   └───Cache
│   │       └───index-dir
│   ├───blob_storage
│   │   └───9b46839e-470e-4a3a-aa32-e9bc919a25f0
│   ├───databases
│   ├───databases-incognito
│   ├───File System
│   │   ├───026
│   │   │   └───t
│   │   │       └───Paths
│   │   └───Origins
│   ├───GCM Store
│   │   └───Encryption
│   ├───GPUCache
│   │   └───index-dir
│   ├───IndexedDB
│   │   ├───https_hackernoon.com_0.indexeddb.leveldb
│   │   ├───https_mobile.twitter.com_0.indexeddb.leveldb
│   │   ├───https_www.epicgames.com_0.indexeddb.leveldb
│   │   └───https_www.independent.co.uk_0.indexeddb.leveldb
│   ├───Local Storage
│   │   └───leveldb
│   ├───paks
│   ├───Platform Notifications
│   ├───saved_pages
│   ├───Service Worker
│   │   ├───CacheStorage
│   │   │   ├───5a6f7e336992bc24678958dc2f1f9b9eec83593b
│   │   │   │   ├───281ffb34-a074-4397-a60c-e3dc55aee5e5
│   │   │   │   │   └───index-dir
│   │   │   │   └───8d34090e-e00a-4f69-9450-bbe1b4b0dc9d
│   │   │   │       └───index-dir
│   │   │   ├───96f3041722d8f6857b95786ee88fa6a107a86943
│   │   │   │   └───11ccf6ea-9e2a-4648-8c61-a635e1cca5c5
│   │   │   │       └───index-dir
│   │   │   └───e60030e2e5440743857a39cacd108634434c91f1
│   │   │       ├───0045349f-4331-4037-bf9d-e9711e515a08
│   │   │       │   └───index-dir
│   │   │       ├───4a447cca-f7ca-41f1-9464-e40337cd7ed1
│   │   │       │   └───index-dir
│   │   │       └───907b2396-da18-4880-a0df-e3608abac640
│   │   │           └───index-dir
│   │   ├───Database
│   │   └───ScriptCache
│   │       └───index-dir
│   ├───Session Storage
│   ├───shared_proto_db
│   │   └───metadata
│   ├───Sync Data
│   │   └───LevelDB
│   └───VideoDecodeStats
├───app_optimized
├───app_textures
├───app_webview
│   ├───blob_storage
│   │   └───3f7cc261-4c0e-41cc-947b-2dc712733f49
│   ├───GPUCache
│   │   └───index-dir
│   └───Local Storage
│       └───leveldb
├───cache
│   ├───cache
│   │   └───index-dir
│   ├───Crashpad
│   │   ├───attachments
│   │   ├───completed
│   │   ├───new
│   │   └───pending
│   ├───crash_dumps
│   ├───distiller
│   │   └───index-dir
│   └───okhttp
├───code_cache
├───databases
├───files
│   ├───AFRequestCache
│   ├───ds
│   │   ├───10
│   │   └───E
│   ├───images
│   │   └───share
│   ├───keychain
│   │   └───0
│   ├───reading
│   └───recently_closed_tabs
├───no_backup
└───shared_prefs
data/app/com.opera.browser-2
├───lib
│   ├───arm
│   └───arm64
└───oat
    ├───arm
    └───arm64
data/data/com.opera.browser/files/
# 332 files of the nameformat "thumbnail_-214748????"
# 3   files of the nameformat "searchengine_j_"
AFRequestCache             
appstate.bin                    
audience_network.dex     
cards_settings.dat           
ds                                  
favorite_25                     
favorite_29                     
favorite_31                     
favorites.json                  
images                           
keychain                        
newsfeedback                 
permissions.bin               
reading                          
recently_closed_tabs       
reksio.ini
### System Info I think I was on Android 7.1.1 Rooted with Magisk, but stock ROM ### Recently Closed Tabs Not what I am looking for right now, but I stumbled upon the location of those, in case a future viewer is looking for them:
data/data/com.opera.browser/files/recently_closed_tabs/state-2147481796
### Related Links * [How can I export all my open Firefox Tabs to a text file?](https://android.stackexchange.com/a/205587/96334) is posed about doing so on a living phone, but also points out where the file is located. The relevant file is called sessionstore.js. That does not seem useful for opera. grepping find for "session" only finds shared_prefs/sessionrestore.xml which contains nothing useful for my purposes. * [How can I export the list of open Chrome tabs?](https://android.stackexchange.com/a/104153/96334) ### Promising Files appstate.bin data/data/com.opera.browser/files/appstate.bin contains at least some urls and their titles, separated by a null-byte. strings appstate.bin outputs more than just the urls that were open though. And some of those doubly or not completely. I shall document my journy with this file below. Looking at data/data/com.opera.browser/files/appstate.bin shows that it's a binary data file, but it contains readable strings. Open it with vim appstate.bin or look at hexdump -C appstate.bin.
strings appstate.bin | grep -A3 reader_mode_state
already spits out quite a few urls. But it's not yet obvious to me how the structure of that file actually works. Some entries prefix the url with l or O or K or ] or not at all. In some entries the first line after "reader_mode_state" is the url, in others it is "operaui://startpage" and the url follows further below. But what stands out is that the urls all seem to start with http or https - unless you had some ftp or such open, which I'm pretty confident I did not.
strings appstate.bin | grep http
outputs 1506 lines though. some links are duplicates, others are links I do not care about. e.g. like so:
Qhttps://www.linuxuprising.com/2018/06/fix-no-sound-dummy-output-issue-in.html?m=1 
Qhttps://www.linuxuprising.com/2018/06/fix-no-sound-dummy-output-issue-in.html?m=1 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
https://www.linuxuprising.com 
Since I don't care about duplicates, we can apply uniq to reduce that number down to 967 urls. With sort -u we would get down to 833 instead. But both are still too many. It seems to me like opera also stores the tab's history in there. Removing some obviously unwanted lines gives 523 lines, so ~260 urls:
strings appstate.bin | grep -v -e 'operaui://startpage' -e 'Speed Dial' | grep -A2 reader_mode_state | uniq | grep -v 'reader_mode_state'
As a target number to consider:
strings appstate.bin | grep reader_mode_state | wc -l
231
That means - assuming this target number is a good estimate of how many tabs were open - that I have about thirty urls too many. I think I can live with that.
lucidbrot (342 rep)
Jun 6, 2020, 10:43 AM • Last activity: Jul 25, 2024, 06:45 PM
2 votes
0 answers
113 views
Opera doesn't show up in the system Share menu on Android 13
I'm using Xiaomi Redmi Note 10 Pro (M2101K6G) with Android 13 and MIUI 14. For some reason Opera for Android ([Opera browser with AI][1]) doesn't show up in the standard system Share menu, which is pretty annoying, since launching Opera and manually pasting the URL takes time. Interestingly enough,...
I'm using Xiaomi Redmi Note 10 Pro (M2101K6G) with Android 13 and MIUI 14. For some reason Opera for Android (Opera browser with AI ) doesn't show up in the standard system Share menu, which is pretty annoying, since launching Opera and manually pasting the URL takes time. Interestingly enough, Opera does show up in the "Open with" dialog for .html files in a file manager. Is it a standard behavior for Opera on Android or is it just me and my device?
Buckminster (121 rep)
Mar 19, 2024, 10:00 PM
2 votes
2 answers
448 views
Most of the pages show "insecure connection" in Opera
I have changed some security settings in my Android yesterday (I don't remember which one). Today most of the pages show "insecure connection" in Opera. I cannot even go to youtubel.com Everything opens as normal in Firefox. I've reinstalled Opera, but the problem remains. How can I undo this?
I have changed some security settings in my Android yesterday (I don't remember which one). Today most of the pages show "insecure connection" in Opera. I cannot even go to youtubel.com Everything opens as normal in Firefox. I've reinstalled Opera, but the problem remains. How can I undo this?
sixtytrees (131 rep)
Oct 20, 2022, 11:13 AM • Last activity: Oct 27, 2022, 03:19 PM
3 votes
0 answers
414 views
How can I hover over some text on a webpage in Opera for Android?
On [this Timeline on Patents.SE][1], for example, hovering over the `S` shows it stands for "simultaneous dates" (see image below). This works on Chrome desktop, but not on Opera mobile. [![screenshot showing the mouse hover popup](https://i.sstatic.net/Wy2XA.png)](https://i.sstatic.net/Wy2XA.png) [...
On this Timeline on Patents.SE , for example, hovering over the S shows it stands for "simultaneous dates" (see image below). This works on Chrome desktop, but not on Opera mobile. [![screenshot showing the mouse hover popup](https://i.sstatic.net/Wy2XA.png)](https://i.sstatic.net/Wy2XA.png)
Franck Dernoncourt (3414 rep)
Oct 9, 2022, 11:25 PM • Last activity: Oct 10, 2022, 11:33 AM
1 votes
1 answers
693 views
Unable to open downloaded PDF files directly from Opera browser
I'm using Xioami's MI 9 SE phone. I have several PDF viewer apps installed: Mi Doc Viewer, Pdf Viewer Plus, MuPDF viewer... However - whenever I try to open a PDF with one of these, or even with a file manipulation app, from a browser - I either get some error message (e.g. lack of permissions which...
I'm using Xioami's MI 9 SE phone. I have several PDF viewer apps installed: Mi Doc Viewer, Pdf Viewer Plus, MuPDF viewer... However - whenever I try to open a PDF with one of these, or even with a file manipulation app, from a browser - I either get some error message (e.g. lack of permissions which I can't change, or some blurb in Chinese) - or just an empty screen. Here are two screenshots, of the errors with two apps, when I try to open a file via my (Opera) browser Downloads screen. The file I try to open is desktop.pdf; when pressing it, I'm presented with an app selection dialog, and whichever app I choose, it doesn't work. **With "MI Doc Viewer (Powered by WPS)"**: enter image description here **With "Document Viewer"**: enter image description here What might cause this problem, and how can I circumvent or fix it? PS - I don't get this for other file types (at least, not that I've noticed).
einpoklum (555 rep)
Sep 8, 2022, 11:09 PM • Last activity: Sep 9, 2022, 04:19 PM
1 votes
0 answers
206 views
How can I disable Google AMP in Google Search on Opera?
AMP creates some issues such as dark mode incompatibility on some websites. How can I disable Google AMP in Google Search on Opera?
AMP creates some issues such as dark mode incompatibility on some websites. How can I disable Google AMP in Google Search on Opera?
Franck Dernoncourt (3414 rep)
Apr 18, 2022, 07:36 AM
0 votes
1 answers
1246 views
Browsers Zoom In and Out while Scrolling
Every time I open a page in either Chrome, Opera or Firefox and try to scroll with the tip of my finger, the browser seems to suddenly zoom in and out while scrolling, interpreting the scroll down as a pinch AND scroll gesture. This is f****** annoying. This problem does not occur at all on Android'...
Every time I open a page in either Chrome, Opera or Firefox and try to scroll with the tip of my finger, the browser seems to suddenly zoom in and out while scrolling, interpreting the scroll down as a pinch AND scroll gesture. This is f****** annoying. This problem does not occur at all on Android's built-in browser, so I must advise this is not a problem with my touch screen. I experience this issue on my LG Optimus L3, with Android 4.1.2 Jelly Bean. ***EDIT 1***: The problem is probably inherent to the cell phone model, as only I and a friend, who owns an identical phone, have this same problem. ***EDIT 2***: The problem seems to be solved for the last Google Chrome update, but Opera unfortunately still behaves in this way. This means that it isn't a user interaction problem, but a bug.
SuperFXMaster (1 rep)
Jul 19, 2014, 03:06 PM • Last activity: Mar 24, 2022, 03:05 AM
0 votes
0 answers
33 views
Can I always refuse to share my location when a website asks for it in Opera?
I don't want to always click on no in those windows: [![enter image description here][1]][1] I use a Google Pixel 6 with Android 12. [1]: https://i.sstatic.net/pxhfo.png
I don't want to always click on no in those windows: enter image description here I use a Google Pixel 6 with Android 12.
Franck Dernoncourt (3414 rep)
Jan 7, 2022, 05:25 PM • Last activity: Jan 9, 2022, 12:12 PM
2 votes
2 answers
10384 views
How can I access the browser console on Opera Mobile on Android?
How can I access the browser console on [Opera Mobile on Android](https://play.google.com/store/apps/details?id=com.opera.browser)? Browser console = something similar to the developer console window on Chrome, when pressing the keyboard shortcut Ctrl Shift J
How can I access the browser console on [Opera Mobile on Android](https://play.google.com/store/apps/details?id=com.opera.browser) ? Browser console = something similar to the developer console window on Chrome, when pressing the keyboard shortcut Ctrl Shift J
Franck Dernoncourt (3414 rep)
Jun 9, 2020, 01:11 PM • Last activity: Apr 22, 2021, 06:09 PM
2 votes
0 answers
2198 views
How to reopen 1000 synced Opera Tabs from a different device?
Last time, I could simply copy the `appstate.bin` file to the new device, as described in [this Q&A](https://android.stackexchange.com/questions/225695/how-to-recover-open-opera-tabs-from-backup-data-after-phone-bricked). But this time, either my backup is too old or something else changed. Copying...
Last time, I could simply copy the appstate.bin file to the new device, as described in [this Q&A](https://android.stackexchange.com/questions/225695/how-to-recover-open-opera-tabs-from-backup-data-after-phone-bricked) . But this time, either my backup is too old or something else changed. Copying that file has no visible effect. However, I have synced my open tabs to Opera's servers. On my freshly reinstalled phone, I can still see the "tabs open on a different device" which is that same phone pre-reinstall. I can also view the list of open tabs on www.sync.opera.com/tabs . How can I get all of them open on my phone again? I don't want to manually choose each one until the 1811 tabs are opened. It is also possible for me to view the same list in opera on desktop under opera://activity. I have root access on my phone. ---------- Seeing the number, I'm reconsidering whether I should even bother, since I will probably never look at most of those again. But I'm still curious if there is an easy way of restoring those. The official opera forums [don't sound like that feature exists](https://forums.opera.com/topic/26899/open-all-tabs-from-other-devices) . ---------- When I right-click > save as on the opera sync website, I get the full list in a single line of html (without newlines). Each (I hope) entry is set up like this:
Solved: Bluetooth volume defaults to maximum on each new connection | Android Development and Hacking https://forum.xda-developers.com/oneplus-5/help/bluetooth-volume-defaults-to-maximum-t3641676/amp/
So if we knew how to automatically open the tabs on the phone given the URLs, extracting them should not be too hard.
lucidbrot (342 rep)
Feb 15, 2021, 02:21 PM • Last activity: Feb 15, 2021, 02:30 PM
5 votes
4 answers
19586 views
Videos are directly streaming onto my default player. Want to open in Opera so I can download it
I have been using Android for the last week. I have Opera for browsing. I download videos from a website directly thru Opera. While downloading it asks me whether to open the video in Opera or default video player of my mobile. Accidentally I once clicked on the "make it default" option and it was d...
I have been using Android for the last week. I have Opera for browsing. I download videos from a website directly thru Opera. While downloading it asks me whether to open the video in Opera or default video player of my mobile. Accidentally I once clicked on the "make it default" option and it was directly streamed to the video player. After this it never open in my Opera to download. Because of this I can't download videos into my mobile. If I try to search the name of the video player I cant find it. And please help to restore as it was before.
Sahil (51 rep)
Dec 18, 2012, 12:25 PM • Last activity: Aug 16, 2018, 11:32 AM
2 votes
0 answers
119 views
Start Page for "Opera for Android"
The problem: I am trying configure my "Opera for Android", the "full" browser for the Android OS, to start at the "Speed Dial", and not at the last loaded website page. This is an issue of saving data traffic. I run a website where some pages are long lists, which I don't want reloaded the next time...
The problem: I am trying configure my "Opera for Android", the "full" browser for the Android OS, to start at the "Speed Dial", and not at the last loaded website page. This is an issue of saving data traffic. I run a website where some pages are long lists, which I don't want reloaded the next time I start Opera. Yes, I know I could (and do if I remember) close Opera by clicking on the red O, and pick "exit". This works to close all tabs, but I would like to not have to be dependent on my remembering. Any help will be appreciated. I have found no answer for this issue. Usual search results are for everything else other than "Opera for Android". My apologies if I missed an answer somewhere for "Opera for Android". The "Opera Forum" is not usefull, because, again, all answers are not for the Category "Opera for Android". Also, this question is not for Opera-Mini.
kdsdata (21 rep)
Apr 8, 2018, 10:58 PM • Last activity: Apr 11, 2018, 08:08 AM
0 votes
1 answers
48 views
ebay://, tel: etc not working out of browser
I'm using Opera as browser. I can remember that in the past, when I googled a restaurant, I could dial the phone number right from the search results. Now, I see in the title bar `tel: `, but the dialer doesn't open. In addition, I just noticed that an `ebay://` link does also not open the Ebay app...
I'm using Opera as browser. I can remember that in the past, when I googled a restaurant, I could dial the phone number right from the search results. Now, I see in the title bar tel:, but the dialer doesn't open. In addition, I just noticed that an ebay:// link does also not open the Ebay app but does nothing. Any idea what I have configured for achieving this behavior? And even more interesting: how can I restore the original behavior?
eckes (285 rep)
Nov 12, 2017, 07:04 PM • Last activity: Apr 10, 2018, 05:00 PM
0 votes
1 answers
79 views
How to alter android opera lock screen news?
**How to alter android opera lock screen news?** When my android os7 is now unlocked there is the Opera browser lock screen news. How can one alter the content displayed there?
**How to alter android opera lock screen news?** When my android os7 is now unlocked there is the Opera browser lock screen news. How can one alter the content displayed there?
Catto (111 rep)
Dec 19, 2017, 06:38 PM • Last activity: Apr 10, 2018, 04:50 PM
1 votes
1 answers
202 views
How do I edit the urls of the speed dial buttons in Opera Mobile?
How do I edit the urls of the speed dial buttons in Opera Mobile? For example, I have a url www.economist.com/printedition which redirects to a different url on different occasions. If I use the standard speed dial functionality, I will end up saving the redirected url instead of the printedition ur...
How do I edit the urls of the speed dial buttons in Opera Mobile? For example, I have a url www.economist.com/printedition which redirects to a different url on different occasions. If I use the standard speed dial functionality, I will end up saving the redirected url instead of the printedition url. Is there some file where these urls can be edited?
Tola Odejayi (151 rep)
Jul 20, 2014, 07:12 PM • Last activity: Apr 10, 2018, 04:12 PM
0 votes
1 answers
694 views
How to Enable Android Opera mini browser off-road mode?
Recently I found that, enabling off-road mode in Opera mini browser is a great way to hide my browsing data from ISP. So I installed the version 24.0.2254. But I couldn't find the option in enable the off-road mode. Seems like this option is available in old versions but not in latest ones. Is off-r...
Recently I found that, enabling off-road mode in Opera mini browser is a great way to hide my browsing data from ISP. So I installed the version 24.0.2254. But I couldn't find the option in enable the off-road mode. Seems like this option is available in old versions but not in latest ones. Is off-road mode is obsolete now or is there any alternative options available?
S.Roshanth (101 rep)
May 12, 2017, 05:23 AM • Last activity: Jun 4, 2017, 12:03 AM
0 votes
1 answers
878 views
turn off opera news stories
I have never used Opera. Still, once a day or so I get a notification of some news headline. I don't have to open opera for this, it appears on my phone "dashboard" that lists all my apps and I can also see the notification from the screen that just shows the clock and text message notifications, et...
I have never used Opera. Still, once a day or so I get a notification of some news headline. I don't have to open opera for this, it appears on my phone "dashboard" that lists all my apps and I can also see the notification from the screen that just shows the clock and text message notifications, etc. (Sorry I don't really know much mobile terminology). Is this the same issue described here? https://android.stackexchange.com/questions/149864/how-to-turn-off-opera-mini-discover-top-stories-news-feed The person who posted that question seems to have a problem with the browser home page showing news stories. I'm using Android 6.0.1, Security Patch Level Oct 1, 2016. My phone is a Blu Life One X2. This feature is extremely irritating and I wonder who thought such an intrusive app was a good design decision.
Julian Cienfuegos (101 rep)
Apr 3, 2017, 03:17 PM • Last activity: Apr 9, 2017, 04:39 PM
1 votes
1 answers
234 views
Is it possible to exclude apps from the "open with" dialog?
I have two browsers on my device, Chrome and Opera, but generally always want to use Chrome. But even if I select Chrome for opening weblinks and press the "Always" button, it might still ask me again which browser I want to use for some other links. My phone is rooted (it's a Fairphone). Is it poss...
I have two browsers on my device, Chrome and Opera, but generally always want to use Chrome. But even if I select Chrome for opening weblinks and press the "Always" button, it might still ask me again which browser I want to use for some other links. My phone is rooted (it's a Fairphone). Is it possible to just exclude Opera once and for all from being suggested? I only want it to appear when I deliberately start it via the drawer.
Felix Dombek (209 rep)
Mar 29, 2016, 01:59 PM • Last activity: Mar 29, 2016, 04:41 PM
1 votes
1 answers
3729 views
Set font size in Opera
Opera Mini has an option to choose between small/medium/large font sizes. I tried to find this option in [the new Opera browser](http://www.opera.com/mobile/android) for Android, but couldn't. Is there any way at all to set the font size for Opera?
Opera Mini has an option to choose between small/medium/large font sizes. I tried to find this option in [the new Opera browser](http://www.opera.com/mobile/android) for Android, but couldn't. Is there any way at all to set the font size for Opera?
sashoalm (829 rep)
May 9, 2014, 01:58 PM • Last activity: Mar 2, 2015, 04:16 PM
Showing page 1 of 20 total questions