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
8 votes
3 answers
5632 views
Chrome and Firefox cannot add specific URL to home screen
I'm using Chrome and Firefox on Android 10. I need to add a link to my home screen and I can't find a way to add the specific link. I know that I can do the following: 1. Go to the URL 2. Tap the overflow (3-dot) menu 3. Add to home screen However, if I navigate to a specific URL **within** some sit...
I'm using Chrome and Firefox on Android 10. I need to add a link to my home screen and I can't find a way to add the specific link. I know that I can do the following: 1. Go to the URL 2. Tap the overflow (3-dot) menu 3. Add to home screen However, if I navigate to a specific URL **within** some sites, like Weather Underground (https://www.wunderground.com/) and follow the above process, it doesn't add the specific URL, it adds www.wunderground.com and doesn't seem to give me any way to edit that URL to reference the specific subpage (e.g. www.wunderground.com/my/specific/url). Why, and how to solve this?
user3705236 (81 rep)
May 14, 2020, 11:34 AM • Last activity: Sep 14, 2025, 05:42 AM
97 votes
13 answers
98296 views
How can I export the list of open Chrome tabs?
Chrome's sync feature isn't picking up all of the tabs open on my Android phone. Are the tabs stored in a file somewhere that I can access? My intention is to export the list of tabs so that I could run a factory reset on the device. Running Android 4.3
Chrome's sync feature isn't picking up all of the tabs open on my Android phone. Are the tabs stored in a file somewhere that I can access? My intention is to export the list of tabs so that I could run a factory reset on the device. Running Android 4.3
Majjo (1073 rep)
Nov 8, 2013, 11:08 PM • Last activity: Sep 9, 2025, 08:41 AM
1 votes
1 answers
85 views
Chrome doesn't show typed text in address bar
I recently got a Samsung S25. Since then I regularly notice its failing to show text when I try to type something in the address of my chrome browser. EDIT: Now that I have the page a bit longer, I am starting to wonder if its somehow related to lichess in incognito mode (that would mean a site coul...
I recently got a Samsung S25. Since then I regularly notice its failing to show text when I try to type something in the address of my chrome browser. EDIT: Now that I have the page a bit longer, I am starting to wonder if its somehow related to lichess in incognito mode (that would mean a site could have impact on how you type in the address bar?! Today I actually managed to get a screenshot as you can see that the address bar is empty while the type suggestions are showing. The problem is not happening all the time, perhaps a few times per day. I did not notice it in other apps, but I also don't use any other browsers, if that matters. This eliminates any concerns about whether the keyboard actually picks up the letters, but I am not sure about how to go forward. I found a recommendation to do a full reboot, that did not have any effect. enter image description here
Dennis Jaheruddin (133 rep)
Aug 5, 2025, 08:21 AM • Last activity: Sep 6, 2025, 07:48 PM
4 votes
1 answers
3224 views
How to force mobile Chrome to open URLs instead of searching
I use Chrome for Android. When I type for example `http://192.168.1.1:8000/` in the address bar, it opens Google with that address as a search query. I need to open the page and am unable to do so. I tried different variations with and without manually typing `http://` at the beginning and `/` at th...
I use Chrome for Android. When I type for example http://192.168.1.1:8000/ in the address bar, it opens Google with that address as a search query. I need to open the page and am unable to do so. I tried different variations with and without manually typing http:// at the beginning and / at the end. I sent a bug report, but since the fix is probably not coming very soon, I need a workaround. Is there any?
Neat
Aug 2, 2017, 09:06 PM • Last activity: Aug 1, 2025, 11:49 PM
2 votes
2 answers
7069 views
How to import bookmarks into Chrome-for-Android without syncing via Google account?
I am moving into a new Android 7.0 device (a Nexus 6P). On my Mac computer, I have an `.htm` file with a dozen bookmarks. How can i import these bookmarks into the stock Chrome-for-Android browser? I am aware that Google will sync bookmarks between Chrome on a desktop and Chrome on Android via my Go...
I am moving into a new Android 7.0 device (a Nexus 6P). On my Mac computer, I have an .htm file with a dozen bookmarks. How can i import these bookmarks into the stock Chrome-for-Android browser? I am aware that Google will sync bookmarks between Chrome on a desktop and Chrome on Android via my Google account. I do **not** want to do that, because I want to avoid leaving that digital trail. I see a number of apps on the Google Play app store, but none seems to be doing just import and nothing else.
Jim DeLaHunt (329 rep)
Nov 27, 2016, 08:10 AM • Last activity: Jul 20, 2025, 11:38 PM
2 votes
1 answers
96 views
Sync passwords in Chrome - but not any other data
How can you set Chrome to sync passwords to Google Account - but not any other data? Chrome is designed to send full browser history to Google, for ad-tracking purposes. What's the full list of things to make sure are turned off, after signing in to Chrome with my Google Account? --- I'm setting up...
How can you set Chrome to sync passwords to Google Account - but not any other data? Chrome is designed to send full browser history to Google, for ad-tracking purposes. What's the full list of things to make sure are turned off, after signing in to Chrome with my Google Account? --- I'm setting up a new device (Pixel 9 with Android 16). It comes with Google Password Manager. Sadly, Chrome uses its own autofill code. When Chrome offers to save something in Google Password Manager, it does _not_ look the same as in any other app. => If I _don't_ sign in to Chrome, I will have two separate password managers: 1. System-level autofill with Google Password Manager - which can only save passwords in your Google Account. 2. If you don't sign in to Chrome using your Google account, then Chrome can only save passwords "on this device". I use Firefox as my web browser. But I'm used to keeping the original browser as a backup (or keeping Chrome on Linux). I need to be able to check whether a website has decided to hate Firefox, or whether it's broken for everyone. It might sound picky, but I don't want my backup browser to use a separate "on my device" section in Google Password Manager. It's too much confusion. I want to have a good setup, that I can recommend to other people.
sourcejedi (519 rep)
Jul 18, 2025, 12:02 PM • Last activity: Jul 20, 2025, 11:39 AM
3 votes
1 answers
474 views
Chrome browser not showing Home and Settings
[![enter image description here][1]][1] After the latest software update on my Google Pixel 9, I can no longer see the Home button or "..." menu (Settings) on the Google Chrome browser. I did a lot of troubleshooting with the app, related apps, other settings, and finally factory reset the phone. Th...
enter image description here After the latest software update on my Google Pixel 9, I can no longer see the Home button or "..." menu (Settings) on the Google Chrome browser. I did a lot of troubleshooting with the app, related apps, other settings, and finally factory reset the phone. The issue persists! I called Pixel support and confirmed that this is not intentional. I tried the URLs: chrome://settings, chrome://history, etc. but they didn't work. I am out tricks - and Google Support is useless. How does one get to the home page or settings? Could this be malware? I did just experience a serious hack (related to bitcoin) on the phone. Any thoughts?
kat (33 rep)
Dec 18, 2024, 06:59 AM • Last activity: Jul 20, 2025, 11:25 AM
0 votes
0 answers
29 views
Can I expand the address bar in Chrome to view long URLs?
I would like to expand the address bar to a larger text box where I can see and edit the entirety of long URLs. Is there any way to do this?
I would like to expand the address bar to a larger text box where I can see and edit the entirety of long URLs. Is there any way to do this?
Ryan D (1 rep)
Jul 16, 2025, 06:30 PM
1 votes
0 answers
197 views
Why don’t links open in external Chrome browser with Telegram Android?
I have "In-App Browser" setting turned off, since I want all links to open in external Chrome browser. However, the links still open in In-App Browser instead of Chrome. Chrome is default and the only browser on my tablet. Why is that? Can this be fixed?
I have "In-App Browser" setting turned off, since I want all links to open in external Chrome browser. However, the links still open in In-App Browser instead of Chrome. Chrome is default and the only browser on my tablet. Why is that? Can this be fixed?
Slava (111 rep)
Jul 12, 2025, 06:04 PM • Last activity: Jul 15, 2025, 09:37 AM
-1 votes
1 answers
110 views
Chrome keeps saying a webpage is important to me when clearing history
Every single time I try to clear my Google Chrome history, a message pops up: Also delete Data on this webpage: This webpage seems to be important to you: `sakana.ai` ...even though I never actually visited the site. Yet it pops up over and over, no matter what I do. Why is this happening? **Edit:**...
Every single time I try to clear my Google Chrome history, a message pops up: Also delete Data on this webpage: This webpage seems to be important to you: sakana.ai ...even though I never actually visited the site. Yet it pops up over and over, no matter what I do. Why is this happening? **Edit:** it seems to only happen on a specific Google profile.
user2741831 (117 rep)
Jul 6, 2025, 05:49 PM • Last activity: Jul 12, 2025, 04:53 AM
1 votes
1 answers
60 views
Trying to set up new phone and want to know if Chrome backup local data like cache and thumbnails to the cloud?
I am trying to set up my new phone and want to understand what information is backed up by chrome in Android/Windows which I can restore. My questions are: Does chrome back up cache, local data like temp files, login data and thumbnails, so that I don't need to set up apps again I new phone, from wh...
I am trying to set up my new phone and want to understand what information is backed up by chrome in Android/Windows which I can restore. My questions are: Does chrome back up cache, local data like temp files, login data and thumbnails, so that I don't need to set up apps again I new phone, from what I read on internet, apparently not
user620125 (11 rep)
Jun 18, 2025, 03:23 PM • Last activity: Jul 3, 2025, 05:32 AM
14 votes
8 answers
45108 views
How do I switch profiles in Chrome for Android?
Is there any way to switch Chrome profiles while using the Chrome mobile phone app?
Is there any way to switch Chrome profiles while using the Chrome mobile phone app?
Nathan Wailes (261 rep)
Aug 31, 2019, 06:39 PM • Last activity: Jun 11, 2025, 01:48 AM
4 votes
2 answers
2602 views
"Listen to this page" menu item in Chrome - Where is it?
The following official Google Chrome support page describes a feature called: "[Listen to this page][1]". However, when I follow all the instructions on that page, I still can't find that elusive `Listen to this page` menu item. I noticed the note that says that this feature "isn't available yet on...
The following official Google Chrome support page describes a feature called: "Listen to this page ". However, when I follow all the instructions on that page, I still can't find that elusive Listen to this page menu item. I noticed the note that says that this feature "isn't available yet on all websites", but I tried on the most likely sites to be supported by it (nytimes.com, wikipedia.org, etc.) - to no avail. If this feature wasn't silently removed by Google, can you provide an example of a website that does demonstrate this feature? --- I am using the latest & greatest version of Chrome for Android: 131.0.6778.200, on a Pixel 4a running Android 13: Yet, I am still unable to see the Listen to this page menu item, even after reloading the page several times: I am also unable to view it on the Toolbar shortcut settings:
sfinja (216 rep)
Dec 25, 2024, 08:54 PM • Last activity: Jun 3, 2025, 06:49 PM
6 votes
1 answers
6414 views
Embedded YouTube videos have sound but no video
Whenever I come across a page with an embedded YouTube video and press play then the sound will be heard but the video will be blank (a black screen). The controls work just fine - it's just that I don't have any video. If I attempt to rotate the phone to landscape, then the video will briefly show...
Whenever I come across a page with an embedded YouTube video and press play then the sound will be heard but the video will be blank (a black screen). The controls work just fine - it's just that I don't have any video. If I attempt to rotate the phone to landscape, then the video will briefly show just before the screen is rotated and then go back to being black again. Sound will continue to play just fine. If I attempt to rotate the phone back to portrait then the same thing happens again. This problem occurs in Chrome, but also in any apps where the browser has been embedded (eg. Feedly and Facebook). My phone is a Samsung Galaxy S3 (i9300) running CM11-20141115-SNAPSHOT-M12-i9300. Is there any way I can resolve this?
Richard (726 rep)
Nov 24, 2014, 11:15 AM • Last activity: May 11, 2025, 04:04 PM
3 votes
1 answers
8605 views
How to get Chrome (or any browser) to present a TLS client certificate?
I've set up a server that accepts HTTPS connections with a custom CA certificate. I've installed it on my Samsung Galaxy A50, and can now access the server without warnings in Chrome. Now, I'd like to limit access to clients authenticated with **mTLS**, where they submit client certificates. So far,...
I've set up a server that accepts HTTPS connections with a custom CA certificate. I've installed it on my Samsung Galaxy A50, and can now access the server without warnings in Chrome. Now, I'd like to limit access to clients authenticated with **mTLS**, where they submit client certificates. So far, it works properly on desktop browsers, refusing a TLS connection when a client certificate isn't provided. I now need to access this on the Android phone. I usually use Firefox on that phone, but [Firefox does not support client certificates yet](https://bugzilla.mozilla.org/show_bug.cgi?id=1813930) (as of writing this question, it does support it as of March 2025). Chrome does, however: when I access https://certauth.idrix.fr with the client certificate installed, the certificate choice popup does appear. It doesn't do that for my server, however: instead, it shows a ERR_BAD_SSL_CLIENT_AUTH_CERT (*WEBSITE didn't accept your login certificate, or one may not have been provided. Try contacting the system admin.*), and doesn't prompt me to pick the certificate. From my testing, the problem doesn't seem to be specific to my server: the same happens with mTLS configs for Nginx, Apache HTTPd, and Traefik. However, the https://certauth.idrix.fr server is somehow special, because the mTLS works for it. How do I get Chrome to do this prompt? If I can't, what other browsers support client certificates? (It seems that very few do.)
Danya02 (181 rep)
Aug 18, 2023, 08:29 PM • Last activity: May 9, 2025, 06:42 AM
0 votes
1 answers
195 views
Meaning of tick mark over recent page icon in Chrome browser
When I open a new tab in the Android web browser (Chrome on Android 15 on a Moto G54), the new page includes a row of icons for recently viewed URLs [![row of icons, one ticked][1]][1] What exactly does the tick mark mean? [1]: https://i.sstatic.net/HlbbQckO.png
When I open a new tab in the Android web browser (Chrome on Android 15 on a Moto G54), the new page includes a row of icons for recently viewed URLs row of icons, one ticked What exactly does the tick mark mean?
RedGrittyBrick (773 rep)
May 7, 2025, 09:35 AM • Last activity: May 7, 2025, 10:26 AM
12 votes
5 answers
82261 views
Open PDF files directly in Chrome for Android
I am writing from my Android. On my laptop, it's pretty simple to choose to open a PDF file directly in the browser rather than opening it in an external program. The problem comes when I try to open it on Android. I am usually asked to download it, and it will open with a PDF Viewer. I would like i...
I am writing from my Android. On my laptop, it's pretty simple to choose to open a PDF file directly in the browser rather than opening it in an external program. The problem comes when I try to open it on Android. I am usually asked to download it, and it will open with a PDF Viewer. I would like it to open directly in Chrome because - moreover -- I'd like to get a link to the PDF file. Usually, on Android, you can link to the website, and then the receiver will have to download the PDF so that they can view it. I would like to be readable directly in the browser.
Francesco Alessandro
Oct 13, 2020, 03:02 PM • Last activity: May 2, 2025, 01:54 AM
19 votes
3 answers
60995 views
Chrome 65 doesn't allow screenshots in Incognito mode
Seems that in Chrome for Android [version 65](https://blog.chromium.org/2018/02/chrome-65-beta-css-paint-api-and.html), a "feature" was introduced which doesn't allow you to take a screenshot in Incognito mode. When attempting to take a screenshot, Android will now show an alert saying "Taking scree...
Seems that in Chrome for Android [version 65](https://blog.chromium.org/2018/02/chrome-65-beta-css-paint-api-and.html) , a "feature" was introduced which doesn't allow you to take a screenshot in Incognito mode. When attempting to take a screenshot, Android will now show an alert saying "Taking screenshots isn't allowed by the app or your organization." /** * Sets the attributes flags to secure if there is an incognito tab visible. */ @VisibleForTesting void updateIncognitoState() { WindowManager.LayoutParams attributes = mWindow.getAttributes(); boolean currentSecureState = (attributes.flags & WindowManager.LayoutParams.FLAG_SECURE) == WindowManager.LayoutParams.FLAG_SECURE; boolean expectedSecureState = isShowingIncognito(); if (currentSecureState == expectedSecureState) return; if (expectedSecureState) { mWindow.addFlags(WindowManager.LayoutParams.FLAG_SECURE); } else { mWindow.clearFlags(WindowManager.LayoutParams.FLAG_SECURE); } } Source: [chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoTabSnapshotController.java](https://chromium.googlesource.com/chromium/src/+/8e084f697e8acfe1d1752dee702d8d73eb9655b0/chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoTabSnapshotController.java) This is imposing rules you can expect to have in a enterprise environment on a personal phone. > The operation system UI should make clear when and how other apps are recording the screen. As an app developer, I should not be bothered with avoiding screen captures. Breaking this functionality breaks the lowest common denominator of data sharing: Taking a screenshot. One of the reason to make a screenshot is just because an application misses a proper data export functionality. Source: [HN Discussion](https://news.ycombinator.com/item?id=16572761) > Image Is there any way to disable or prevent this behavior?
Matija Grcic (349 rep)
Mar 12, 2018, 11:52 PM • Last activity: Apr 27, 2025, 03:08 PM
12 votes
3 answers
77268 views
Local files revisited: Opening local HTML files (file:///path/to/file) in Chrome on Android 10.x
You may note the almost duplicate title from [this question][1]. It keeps coming up when trying to solve my current issue. I created a little web app to help at work. Just some HTML and JavaScript, and before Android started enforcing the Scoped Storage, I had no issues using it. Now when I try to l...
You may note the almost duplicate title from this question . It keeps coming up when trying to solve my current issue. I created a little web app to help at work. Just some HTML and JavaScript, and before Android started enforcing the Scoped Storage, I had no issues using it. Now when I try to load the URL (ie: file:///storage/emulated/0/__MyDocs/SignInTracker.html) I get an access denied error. I could use Firefox, but it seems to be because it's not yet using the Scoped Storage standard, which if I understand correctly, will be a requirement in the next Android version, so that means I cannot rely on it working in the future. Also, Firefox just doesn't run as nicely as Chrome. Is there a proper way for a non-Android-developer to use a local web app like this? Is there perhaps a location on the phone where I can place my .html and .js files that will allow Chrome to access them without issues? At work, I'm not online or connected to anything, so loading from another server/computer is not an option. For reference: My Chrome version is 79.0.3945.116, my Firefox version is 68.4.1, and my phone OS is Android 10; Pixel Build/QP1A.191005.007.A1.
therks (223 rep)
Jan 17, 2020, 05:40 AM • Last activity: Apr 2, 2025, 11:07 AM
Showing page 1 of 20 total questions