I'm upgrading my extensions to manifest v3 however the API documentation and migration documentation is less than useful in most cases. Yet the manifest v3 have been enabled on Chrome version 88.
Can someone provide the chrome.favicon API documentation, please?
According to the document "coming soon".^^
they said to build the new API this api, but it seems like they forget to build it.
Related
I'm currently migrating a chrome extension from manifest v2 to v3.
The extension uses Google ReCaptcha for some features. It works well with manifest v2.
But for manifest v3, remote code is not allowed anymore.
So I must bundle a specific version of Google ReCaptcha (for example) instead of just loading it from this.
So, my questions are:
Does it even work? If it works, is it risky?
Are there any better approaches for my use case?
After October 12, the existing AdSense API version 1.4 is not supported, and I tried to switch to the AdSense API version 2, so it is difficult. We would appreciate it if you could provide more details about the update process.
You can check the release notes to get a sense of everything that is different in v2.
If you're using a Google client library, there are updated examples for v2 here.
Im looking into configuring authentication for Azure B2C OIDC authentication on Ckan and was wondering if its possible to do so without modification to the code base or has anyone done it before..
I heard that it might be possible to install extensions for more features on Ckan but I am unsure which extension is for OpenID. I can't really find much documentation regarding this as well.
Any advice?
Yes, it is possible to install extensions to add more features on CKAN.
https://github.com/bcgov/ckanext-sso looks like the most updated extension although the README says it's for CKAN 2.7 and it may need some work to be compatible with newer versions of CKAN.
https://github.com/keitaroinc/ckanext-saml2auth/ is a well maintained extension for SAML2 that can provide some guidance if you need to implement your own extension.
Documentation on how to build custom extensions for CKAN can be found at: https://docs.ckan.org/en/latest/extensions/index.html
Bests!
I can't seem to find any documentation for uploading and encoding on the microsoft docs for AMS. All I see is live stuff. I do see this on the dotnet SDK, but not for node.js, so I'm trying to find something using the REST API. Does anyone have any microsoft docs or tutorials for uploading and encoding Azure Media Services v3 using the REST API?
Thanks for any help (I'm a newbie here)
For REST see the following: https://learn.microsoft.com/en-us/azure/media-services/latest/stream-files-tutorial-with-rest
For Node.js see the following: https://learn.microsoft.com/en-us/azure/media-services/latest/stream-files-nodejs-quickstart
We are adding more and more Node.js content now that the newer Typescript SDK is out there.
Keep an eye on samples here.
I built a simple upload and encode sample here.
https://github.com/Azure-Samples/media-services-v3-node-tutorials/tree/main/AMSv3Samples/StreamFilesSample
Let me know if that gets you started and if that is enough information to understand the basics.
I would avoid trying to roll your own REST based SDK client, since there is very helpful retry logic built into the official NOde.js/TypeScript SDK for Media Services.
For almost a week now I have been trying to implement Authentication in a Xamarin.Forms(Android, iOS and Windows) Project to no avail. All the instructions and guides are either out of date, not clear or not functioning.
This Article from Xamarin was last updated in August 2016 while the MSAL has changed making this article obsolete. in this article they make use of PlatformParameters which has been replaced by UIParent.
This Example from Azure AD B2C documentation page from after implementing has UIRequiredException as calling AcquireTokenSilentAsync is not functioning since as at that time there is no user present.
This is getting really frustrating and would appreciate assistance or some step by step to implement this. All am trying to do is enable Authentication and Authorization for my Xamarin.Forms App and API Endpoint. Any pointer to good working code would be appreciated.
It would be helpful if there is an official updated guide or Video tutorial to help with this.
had exactly the same issue with using this project for a demo.
Use this version:
https://azure.microsoft.com/en-us/resources/samples/active-directory-b2c-xamarin-native/
It is the updated version with MSAL 2.4 preview. Its working on all samples/droid/ios/uwp
Here is a much fresher sample on how to get this done (as of June 20,2017 )
https://github.com/Azure-Samples/active-directory-b2c-xamarin-native
We have had issues with the same example. https://github.com/Azure-Samples/active-directory-b2c-xamarin-native
I have pretty much given up and I am looking at other solutions now.