Google Extensions - Custom Cursor - manifest

What manifest version should I use for making a Custom Cursor Chrome Extension? I have tried looking all over at developer.chrome.com but I just cant find it!
Help would be gladly appreciated.

Related

VS Code cursor in wrong position after tab

When I write some code, and then click Tab to autofill from context menu the cursor is now in the wrong position. It should be before ";" but for some reason it is after ";". Worked fine for about a year, and now suddenly something like this, any ideas?
This problem is related to snippets in vscode.
The easiest way to solve this is to use the snippet extension.
Install "HTML CSS Support" extension made by "ecmel" to visual studio code. Close the program and open it again and you are ready. Problem fixed.
Extension URL: https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css
Long way:
You can write your own or update snippets, to solve this.
Documentation to make your own snippets: https://code.visualstudio.com/docs/editor/userdefinedsnippets
I had same issue. I tried all of the solution proposals and searched snippets for it but can't found anything.
I was already using the html css support extension by ecmel. I deleted and reinstalled it, Closed the vscode program and open it again but I couldn't get any results. Finally downgraded vscode to 1.64 version from here and now cursor works like a charm. I wanted to write this answer for friends like me who did not get any results.

How can I integrate the "Offer to save passwords" option of chrome in my own extension?

I've seen its possible for extensions like Microsoft Autofill to override the "Offer to save passwords" setting in Google Chrome as shown in the picture below.
I would like to integrate this in my own extension, but unfortunately I didn't manage to find any information / documentation about this.
Does anybody know how this works or has any examples?
Thank you very much
Hint posted by #https://stackoverflow.com/users/3959875/woxxom is correct.
Refer to https://developer.chrome.com/docs/extensions/reference/privacy/ for information about this

Forge Viewer - Markup - Editor

Can someone share markup editor extension written in javascript/typescript. I got an example, which is below, but it is written in React, which I don't know.
https://forge-rcdb.autodesk.io/configurator?id=598d7ec14cabf2c1f4dec948
Much appreciated,
Thanks
You may checkout the mirror version of the v6 and v7 markup tool extension (and measurement), with webpack build script:
https://github.com/wallabyway/forge-markup-measure-extensions
and it's https://github.com/wallabyway/forge-markup-measure-extensions/blob/master/Markup/gui/MarkupsGui.js
See also here: Where Can I found docu for Autodesk.Viewing.MarkupsCore extension?

Customize the (about:home) page in google chrome

I want to know if its possible to customize the way your default google chrome look locally on your computer. I am talking from a developer's point of view and not user(ie not to change the home page by going into chrome setting).
I can change the UI by using the chrome f12 option locally. As chrome is installed on my machine then there should be an index.html or something alike file present to render chrome as it does. I want to access that file if possible.
Thanks
you might be able to find some various files, so i would suggest looking through the following folder. C:\Users\MYUSERNAMEHERE\AppData\Local\Google\Chrome\User Data\Default
or C:\Users\MYUSERNAMEHERE\AppData\Local\Google\Chrome\User Data\ as these are the ones that contain your chrome installation, there maybe another folder but this is always the one i have used when developing extensions..
Otherwise i think you will be stuck with the extension part, i myself would have a look at this if you really need.. But that could be a week before i get the chance.
If your looking to deploy a custom google chrome, so they dont need to install extensions. Try the following google term: deploy custom chrome
https://developer.chrome.com/extensions/external_extensions
But editing it directly with just finding a single html file / style i dont think is as easy as it would need to load certain objects into memory and i think they are a little more complex than a plain text file.
EDIT - Looks Like Its Extension Only Now
Had 5 minutes and did a quick google, there was a point where you could use custom style sheets for v32 and below but that was removed https://src.chromium.org/viewvc/chrome?revision=234007&view=revision
So you either need to work with firefox or build an extension.. I could not see any files/folders that would do what you need. So yea i'd start looking at extensions.

Google Chrome extension to modify a page content?

I am very new on Chrome extension development.
I am trying to create an extension that will append a jQuery at the end of the current viewing page and then will execute some code.
Is there any tutorial on that ? or something?
chrome by default user scripts vry much like greasemonkey. You can start with that.
http://www.chromium.org/developers/design-documents/user-scripts
plethora of scripts here: http://userscripts.org/