Just noticed that the "LastVersion" file in the profile folder, as the name suggests, gets updated when the profile is opened with (another version of) BAS e.g. from 114.0.5735.91 to 117.0.5938.63. Therefore it's not suitable for our need to determine the original version of which a profile was created.
But at least can be said what was the latest BAS version that worked with it ;)
Twitter Users to tag not coming up in browser
-
Hi
I tried to tag users by clicking on "Who's in this photo" and typing the correct username but the user is not coming up in the dropdown list : http://storage1.static.itmages.com/i/17/0719/h_1500483577_8210436_6e83f1c8ed.pngWhen i tried to do with my normal browser it is coming up : http://storage5.static.itmages.com/i/17/0719/h_1500483679_2119414_f6bf6fa01b.png
So i think problem is with browser used in BAS so i enabled flash from browser settings but it didn't worked, please help me with any solutions...
-
@niceusername said in Twitter Users to tag not coming up in browser:
from browser
Hi you can try to increase the typing speed may to 200, because if u do manually js loader of twitter will be waiting one by one character and showing all suggestion.
Regards.
-
Hi
Thanks for the suggestion but it didn't worked, i tried with 200, 300 even 5000 milliseconds. I need to complete this project, please help @administrators -
@niceusername
Explanation:
Twitter relies on indexedDb, to store cache of user searches localy. BAS supports indexedDb, but has also old api webkitIndexedDB(which is removed it latest chrome versions), and seems like this old api conflicts with new one. It looks like twitter bug, which is present only on older chrome versions. It will work in BAS after chrome update, meanwhile you can use following workaround:
Solution:
Run "Execute On Every Page Load In Browser" with param
delete window.indexedDB; delete window.webkitIndexedDB;before any twitter activity(including page load).
