Brian Grinstead
Brian Grinstead
This actually seems to work now with no fix in the latest version Chrome. Maybe they fixed the race condition issue? Still an issue in Firefox though.
Hm, yeah the import/export script relies on some implementation details that may have changed. I'm guessing in this case the origin `chrome-devtools://devtools` may have changed: https://github.com/bgrins/devtools-snippets/blob/master/import-export/chrome/devtools_import_export.js#L409.
AFAIK the best way to do this right now would probably be a bookmarklet and assign a keyword then use keyboard shortcuts to focus the URL bar and enter the...
@nasht00 can you put together a small demo on jsbin or jsfiddle demonstrating the problem?
Hi, thanks for catching this. It looks like the js file itself is fine (https://github.com/bgrins/devtools-snippets/blob/master/snippets/querystringvalues/querystringvalues.js) so this is likely an error in the build step that grabs the file and...
Wow, that is strange behavior. I think your research on this would be good to add to the documentation, since everyone's ideal solution will probably differ based on their situation.
Hm, something like that could probably solve the most common issue (and make the plugin just work across many more cases). We would also need to handle the case of...
There are a lot of unrelated changes in this PR that make it hard for me to review and follow. > BUT most improvement (80% !!! ) came from using...
> Again : other changes are just about caching. Any bug would show at once (the cache vars would be undefined -->> an exception thrown ). I'm not really interested...
Good questions. Here is the heuristic we are using for cost calculation: https://github.com/bgrins/javascript-astar/blob/master/astar.js#L94. It appears that we may want to use the "Diagonal Distance" heuristic instead: http://theory.stanford.edu/~amitp/GameProgramming/Heuristics.html. If you implemented...