Self Hosting Chrome Extension - google-chrome-extension

I would like to host my own chrome extension somewhere other than the chrome web store. I plan to install this on a device via the windows registry. How do I host this extension on my own server?

Related

Can i run flutter web build offline

I have a Flutter Web Application which uses a NodeJS and ExpressJS server as a backend. I have deployed this application on a server which is connected to a LAN. When I browse to the server on a computer which has permission to access the internet, the application works fine. But when I browse to the website on a computer with no internet connection, it gives me an error:'Failed to load resource:net::ERR_CONNECTION_RESET canvaskit.js:1'.
Do i always need to have internet access for a Flutter Web Application to work? Can I make the app work without internet connection?

Videojs Record not accessing camera/microphone or Share Screen if website running on AWS EC2 & Azure VM

The web page has the capability of using videojs record for screen recording and webcam video recording. It is working fine on localhost and on shared hosting. But I have deployed website on AWS EC2 and Azure VM for testing and videojs record is not working there. As per my understanding it is all javascript and should be working on browsers where ever the site is hosted.
Any clue?
SCREENSHOT-1:
When user clicks on a button within square box, a window should appear for confirmation (shown in SCREENSHOT-2)
SCREENSHOT-2
This window appears if site is running on localhost or shared hosting service, but not if site is running on Azure VM or AWS EC2.
Testing Pages
https://clearn.codeschunks.com/test/recordvideo (working)
http://ec2-54-185-50-254.us-west-2.compute.amazonaws.com/index.php/test/recordvideo (not working)
The problem is due to security (https). If you see your connection to codeschunk.com is secure (https) while hosting on EC2 your connection is not secure (http only). You can solve it by two methods.
By making your connection to your hosting on EC2 instance secure (https). It can be done by installing SSL Certificate.
Or
Follow these steps in your browser (These are for chrome)
Navigate to chrome://flags/#unsafely-treat-insecure-origin-as-secure in Chrome.
Find and enable the Insecure origins treated as secure section
Add your address you want to ignore the secure origin policy for. In your case the address is http://ec2-54-185-50-254.us-west-2.compute.amazonaws.com/index.php/test/recordvideo
Relaunch the browser.
Now it should work.

Login persistence: difference between mobile and desktop

I've an app made with reactjs with a backend in node. I've released a test version of the app in an S3 bucket configured as static website hosting, now the strange thing, I've logged in the app with desktop and with mobile.
In the desktop my login is persistent, if I visit the app and then go outside it and came back after a day I'm already logged. In mobile browser instead I need to login after a few hours of inactivity. The app is the same, there is some different behaviours from mobile and desktop browser?

Web site on Azure App Service having certificate problem on Chrome

I have a couple of web apps running on a single Azure App Service. I've uploaded a wildcard certificate to the app service and bound it to the relevant hostnames. When I open the app the first time in Chrome the green lock is displayed in the address bar. If I close the tab and open a new tab and try to open the web app I get the following message under the address bar.
When I checked the security tab in Chrome Developer Tools I can see this message.
The first time I connect to the site the security tab in Chrome Developer Tools looks like this:
I'm using the same certificate on a website hosted on SiteGround and I'm not having problems with the certificate there. This looks to be an issue on Azure.
I am using IIS to redirect to https in the web.config rather than using the "HTTPS Only" setting on the Azure portal. Even if I change this setting I'm still having the same issue with the certificate.
This only seems to happen on Chrome. Firefox and Edge are not having a problem.
Are there any settings I need to change in order to fix this?
Updated
I've also checked the site using SSL Labs SSL Server Test tool. Our own certificate is being recognized as trusted but there is another certificate further down in the results that is being recognized as not trusted.

How to access azure web app console or kudu console locally using putty or mac terminal?

I have hosted a web app in azure and I am able to use console through kudu console or azure dashboard but for better development workflow, accessing it through mac terminal is essential.
I don't know how to access azure's web console (not azure server management console) through mac terminal.
Its not linux vm. Its default web app using windows.
No, it is not possible.
On Mac, if you want to access Kudu Console, you could use a browser open http://<yoursite>.scm.azurewebsites.net. But you could not do it on mac terminal.
On Mac terminal, you could call Kudu API to manage your web app, see this link.
On Mac terminal, you also could use Azure CLI 2.0 to manage your web app.
You're trying to do something web apps are not designed to do. You cannot rdp/ssh into a web app. That's what the kudu web console / powershell is for, if you need a command-line for something.
If you need to move specific app or data content to a web app, it's done through the version control provider you wire up to it (e.g. git), or ftp.

Resources