- Copy content of
vsix-bookmarklet, create a bookmark in your browser. - Navigate to the web page of the VS Code extension you want to install.
- Click the bookmark you just created, then click the download button.

- After download finished, rename the file extension to
*.vsix. - In VS Code, select Install from VSIX... in the extension context menu.

| --- | |
| :subscripts: | |
| "₀": '0' | |
| "₁": '1' | |
| "₂": '2' | |
| "₃": '3' | |
| "₄": '4' | |
| "₅": '5' | |
| "₆": '6' | |
| "₇": '7' |
Today is time to learn something about same-origin-policy and why it is so important to know when building a website. We will go through iframes too and what measures you have to take into account when using them. Hope you like it :D
The Same-Origin-Policy is an important concept in the web application security model. Under the policy, a web browser permits scripts contained in a first web page to access data in a second web page, but only if both web pages have the same origin. An origin is defined as a combination of URI scheme, hostname, and port number. This policy prevents a malicious script on one page from obtaining access to sensitive data on another web page through that page's Document Object Model.
This is the common definition that we will found on every page. But what really is it. Well, basically Same Origin Policy limits the access of one window to another.
The reason behind that is security. If you have https://GAKINDUSTRIES.com in one window and https://gmail