iOS16 can use third-party browsers ,like use chrome browsers to debug my website? - wkwebview

WWDC22 "What's new in WKWebView"
https://developer.apple.com/videos/play/wwdc2022/10049/?time=470
Here is say inspect and debug it yourself in third-party browsers on iOS.
enter image description here
What is Third-party browsers? I mean on iOS16, you can use third-party browsers ,like use chrome browsers to debug my website?
thinks!

Related

Allow opening of webview in chrome extension

I'm trying to create a responsive testing browser using chrome extension. Currently I'm using Iframes to render the web-contents. However iframes have a lot of issues opening third party websites in cross-domain origin sites. I found that webviews can quickly render the websites without any CORS or cookies issues. Is there any way in which I can use webviews in the chrome extension? Webviews are used by chrome apps which runs on chromium. So there might be some ways in which we can modify the chromium source code to allow webviews to open in extension.

Chrome extensions: is native messaging deprecated?

When navigating to "native massaging" documentation, first thing you see is a warning:
Important: Chrome will be removing support for Chrome Apps on all
platforms. Chrome browser and the Chrome Web Store will continue to
support extensions. Read the announcement and learn more about
migrating your app.
Since all this documentation located under Chrome Apps docs, is it means that "native messaging" feature going away as well? If it is, what is the alternative for communicating with chrome extension from the outside?

Example of Chrome and Firefox Extensions sharing the same code?

I am looking for a sample project that would compile a chrome and firefox extension that would run some JavaScript code after a page is loaded.
I already wrote a Chrome extension that does this, but I am looking for something cross-browser, that would allow me to build the same extension for Chrome and Firefox.
If this would also allow me to publish the extensions it would be great.
You may refer this link http://www.extensionfactory.com/labs/conversion/
Here you can get firefox extension by submitting chrome extension.
With the Crossrider's framework you can build a cross-browser extension using only one code base that will work on Chrome, Firefox and also Internet Explorer and Safari.
So, with only using javascript single code base and the Crossrider API you can easily build your first cross-browser extension in no time.
(Disclosure: I work at Crossrider)

Browser addon development

Are there any good websites for instructing how to write browser addon for IE, firefox, chrome and Safari?
Not sure whether writing there is some frameworks which can be used to write addon for all major browsers such that one sourcecode for all major browsers.
Thanks.
IE and Firefox have very different plug-in models. IE supports binary helper objects (your native code running in IE's processes). Here’s how you can build one: http://blogs.msdn.com/b/ie/archive/2008/04/04/designing-for-add-on-performance.aspx,
here’s why you should spend as little of your users’ time as possible in your code: http://blogs.msdn.com/b/ie/archive/2011/03/23/updates-to-add-on-performance-advisor.aspx

How should a web developer approach building a Browser toolbar?

I am a web developer looking to build a browser extension. What is the best way to build browser extensions using web technologies (HTML, Javsacript, etc). We are targeting IE and Firefox only. Can IE browser toolbars be created using HTML/Javascript?
There is a bit of confusion here. Your question title says you are looking to develop a "Browser Toolbar", but in the question body itself you are asking about "Browser Extensions".
Its important to understand that in general Browser Toolbars are a subset of a Browser Extension. If you are indeed looking though to develop a Cross Browser Extension and not a toolbar I would really recommend the use of Crossrider - a development framework for cross-browser extensions.
They do not allow you develop toolbars, but they do have an online IDE and an extensive API to build cross-browser extensions for Internet Explorer, Chrome, Firefox and Safari with basic knowledge of JavaScript and jQuery.
Have a look at this article where they discuss using HTML and Javascript to build an extension for firefox.

Resources