You must know they are all related to unicode but how to use them? UNICODE definition is used in Windows SDK source code. If it is defined, functions like RegSetValueEx […]

How to define a Javascript object? The key of an object can be an identifier/symbol(an identifier is a continuous alphabeta/number/_ that does not begin with a number), a number, or […]

Network request initiators

When you type a url such as myprogrammingnotes.com in Firefox’s address bar and type the enter key, the browser will send many http requests to the network. These requests are […]

Firefox extension icon not showing

You must know how to add an icon for a firefox extension: “browser_action”: { “default_popup”: “popup.html”, “default_icon”: { “16”: “icon16.png”, “48”: “icon48.png”, “128”: “icon128.png” }, “default_title”:”hello world”, } You expect […]