Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I want to screen record my users usage that will be embeded in my react code, this is private company website.
MediaStream Recording of mozila is "asking" for premission to get record.
there is any solution for that?
Edit:
I want it to be "behind the scenes", I dont want to bother the agents with not relevant clicks on their system
I'm using it for catching bugs for developing purposes. they say "X doent work for me" I want to visit their flow to improve the development.
Yes, it's certainly possible.
eg. https://www.inspectlet.com/ does this, and doesn't require special permissions.
They basically work by capturing DOM mutations.
There are Open Source alternatives too. eg. https://github.com/Pernosco/DOMRec
They might be legal issues to consider, but in theory capturing the DOM mutations of your own website I wouldn't expect would cause many issues, especially if this is for Debugging or Internal reasons.
Capturing more than your own website, would of course require special permissions, like MediaStream Recording can do as this could capture more than your own website.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've seen Chrome extensions that claim to do such thing, but the chat page they provide are all separate page from the original web page, which is really inconvenient. Is there existing plugin that can do this? I may want to build one myself but I'm guessing there may be some permission issue, since that would be showing content from 3rd party.
Is it possible to insert content like a chat box into all different web pages using Chrome extension?
Yes, there is.
This one does exactly what you want, works for HTTPS sites as well since the connection to server this extension use is under HTTPS. It inserts a chat box to the original page and you can change the size of the chatbox or minimize it.
https://chrome.google.com/webstore/detail/chat-anywhere/bldcellajihanglphncgjmceklbibjkk
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I would like to find a js library that allow me to do similar things as same as gmail:
They got a textarea, when you typing it, it search things and provide a list of contract list for you to choose from, when you tab it, it becomes a separate element, you can delete it by pressing the X. I know it is not come with textarea, or standard html element, how can I describe / search related lib on the web? Any keywords ideas?
stackexchange tags and Pinterest filters work similarly.
I did a google search with
"tags interface" filter
I searched both normal and images.
The images quickly allow you to focus in on an interface.
For example, the jQuery plugin Bootstrap Tags Input jumped out.
A further search on the following brought up more google images which seem right on.
"Tags Input"
I suggest this is better suited for the UX - User Experience StackExchange site. There is one discussion I found here
Good luck. I will likely write something myself in the not too distant future. It is a user friendly interface.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I need to figure out what are the services Google API is providing. Meanwhile, I came to know about Traffic API. Can anyone tell me how frequently it updates the data ??
I am not sure whether it responds real time traffic data..I looked into Google Maps JavaScript API and also looking for Google's service which can provide me these details i.e. Current Traffic moving speed, Traffic Jam details, etc..
I dug around a bit for an answer on this, and the best I can find is that it is indeed nearly 'real-time' or 'continuously'. They appear to aggregate it from a number of sources, including iPhone users (https://googleblog.blogspot.ca/2009/08/bright-side-of-sitting-in-traffic.html, https://www.quora.com/How-does-Google-Maps-collect-real-time-traffic-data, http://shreerangpatwardhan.blogspot.ca/2011/06/where-does-google-get-its-live-traffic.html).
Seems to be a fluid thing that is probably updating nearly every second (or less).
When you do the initial layer request, it says it gets that layer "for the time the request is made". Just FYI for if you need things to stay updated.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I've been playing with this rather spiffing online embeddable image editor from Aviary, and it does exactly what I need it to, namely:
embeddable in my site as HTML/JS
reasonably priced
only basic, fun features
completely idiot proof so even the most ham-fisted can thrash their way to something passable; or to put it another way, I don't want/need a traditional image editing interface like Photoshop - the way that Aviary have done it is pretty much spot on for my needs
However, in the documentation, they indicate that this is only suitable for web-resolution images, while I need to allow users to edit hi-res images as they will eventually be sent to a printer.
Does anyone know of anything comparable to this Aviary editor that can work with hi-res images?
Have you tried pixlr? As far as I'm aware, that editor is hi-res-capable.
In answer to my own question, it turns out that if you pay for the Enterprise version of the software, then full resolution is supported.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Does anyone have experience with a JavaScript library for Augmented Reality?
If so, can you recommend one?
EDIT:
Not sure how to better clarify this... By Augmented Reality I mean using device webcam (laptop, smartphone, tablet) and overlapping elements over the video feed on screen. Ofen, the overlapping is done based on a marker the algorithm searches for within each frame and makes calculations about its position in space.
Hope that's enough.
Thanks.
I think this is what you might be looking for. JSARToolkit is a direct port of Flash FLARToolkit from Ilmari Heikkinen. Great tutorial you may also want to check out and a link to the Git repo.
http://weblog.bocoup.com/javascript-augmented-reality/
https://github.com/kig/JSARToolKit
You can try skarf.js, a framework that I have created for handling JavaScript augmented reality libraries in Three.js.
It currently integrates JSARToolKit and js-aruco, so you can easily switch between these two libraries to decide on the more suitable one to use.
This framework takes care of a number of things for you, including automatic loading of models when the associated markers are detected (association is specified in a JSON file). There is also a GUI marker system which allows users to control settings using AR markers.
Integration with Three.js is just one line of code to create a Skarf instance and another line of code to update.
There are videos, live demos, source codes, examples and documentation available. Check out http://cg.skeelogy.com/skarfjs/ for more info.