Google thinks my portfolio project is a phishing scam - google-chrome

Basically I made a Netflix clone as a portfolio project, there is a banner along the bottom that shows it's a project built by me but when visiting the page via google chrome I get a red screen with a warning saying this:
Once on the page it says I may be using deceptive ads.
Any ideas how I can remedy this? Don't think employers will appreciate it lol.

this problem is nicely done by installing an SSL certificate on it. Try it!

Related

How do I remove the "back to safety" warning on my website using html?

I've coded a website and want some people to review it. However, some people have been concerned because a "back to safety" warning pops up for them. I've already gotten an SSL certificate for my website using Let's Encrypt, but the default link is still http. I've tried using the following code in the header of my html:
<meta http-equiv="Refresh" content="0;URL=https://www.yourdomainname.com" />
This was one of the ways some places online said I could redirect traffic to https, since I'm using GitHub pages and I'm not sure how to implement php or make a .htaccess file. There are two problems I have:
First of all, it does redirect people to the https version of the website, but the warning still shows up in the beginning, so my main problem isn't solved.
Second of all, when I use this code, the website refreshes over and over, and I don't think that's good for UX.
Can anybody help me make my website more comfortable for users?
EDIT:
Here's my website if you would like a look at it.
if your website has no SSL you cannot remove back to safety it is an indicator of your website security in terms of information gathering, better of get an SSL Security for your site.

Trying to adding cookie consent, I keep getting redirected to another website

I found some good tutorials in adding cookies in my website:
https://knowledgebase.webydo.com/en/articles/1942483-how-do-i-add-a-cookie-consent-to-my-website
https://www.youtube.com/watch?v=8R4UP4f1cQQ&t=276s
They explain well, and I would like to follow these guides because all other cookie tutorials are with wordpress and other web creating sites, which mine is not.
If I try to go to their link: https://cookieconsent.insites.com/download I get annoyingly redirected to https://www.osano.com/. Why is this the case? the tutorials are fairly recent and there is no indication that osano took over.

My wordpress website doesn't work on MS Edge / IE.

Recently I've been working on a website for my client. I want to make clear that I'm not a proffessional webdeveloper, I'm a designer with some basic coding skills. I've created some simillar wordpress pages before, and never encountered that problem. Even though I'm using the same theme (Stockhoml by Select Themes) on all of my websites.
The address is: http://odlotowebusy.pl
Everything seems to be fine when the page loads, but when I try to scroll down it all fades to white (only in Edge/IE). I have no idea what couses this problem. Meybe somone here will be able to help me?
have you tried disabling all the plugins you are using and enabling them one at a time to see if any of them affect the site?

downloading parts of a html page on an event

I am developing an universal windows app. I need to download a webpage and extract images from it.
I got the html code and extracted the links to images and downloaded them. The thing is, the site has infinite scrolling (like facebook). When I scroll down to the bottom it loads more images. I am not able to incorporate this into my app. I am a beginner and have very little knowledge of web development or windows app development. This is my first app. I am stuck and have no idea how to proceed. I don't want to use webview as it displays ads from the site and other unnecessary contents. I only want the links to those images. Please help me go past this situation. I need a way to download the new html content that the site loads when user gets to the bottom or some other way to get the image links.
Thanks in advance.
You may or may not be a me to implement this specifically because of the reason you stated. You need to determine how the site loads this information. First I would download Fiddler and in turn enable https connect logging so you can see your encrypted traffic going through Fiddler. Btw the Web View has events you can hook to see loading URLs, etc and it can also be hidden.
So again you need to first understand how the site you want to do this on works and emulate that, assuming they don't have an api already to give you this information as mentioned I'm the comments.
When you do that, come back with code examples and you'll get better help.

Development of browser extension questions

I am looking to develop a cross browser extension (plugin) and am having troubles getting answers to a few questions. So just looking for some simple answers if what I would like to do is possible. Thanks. I am currently looking at using Crossrider but would use whatever.
How do some extensions add a menu to the right click button. For example, when I right click in Chrome I see Evernote Web Clipper and Adblock options in the dropdown). How do they do that?
Could I embed a youtube player, for example. So when it's closed the audio still plays but when clicked you can see the video and what not?
For sites like Grooveshark. Could they have a plugin that when clicked you could change the song or stop the music, etc. So basically communicate with a website in your tab from the plugin?
Thanks. I just found Crossrider and it looks like some may be possible but havn't explored it too in depth yet. Kind of wondering if anyone has tried doing these things and if possible.
Google has a specific API for adding context menus. You can read about it here. Just be sure to request permissions for context menus in the manifest.json file and then you can add everything else to your background JavaScript file.
I don't think it's exactly possible to embed a YouTube player into the extension directly. Google Chrome will not allow for running inline scripts, which are clearly required to run YouTube within a popup page (or anything else, for that matter).
As for your third question, you would have to check into the individual APIs for any sites that you want to run the extension with. Every site is going to be a little bit different and my first instinct is that most sites are not going to allow for directly adding their player to the extension.
I would strongly suggest checking out the information about developing Google Chrome extensions available on Google Code. They provide a great tutorial and reference for the basics of developing extensions.