puddlejumper26 / blogs

Personal Tech Blogs
4 stars 1 forks source link

How to find out third parties application inside project #69

Open puddlejumper26 opened 4 years ago

puddlejumper26 commented 4 years ago

During the work, we sometimes need to make sure all the imports of the applications stay inside the project, rather than import from the third parties.

When we say from third parties, normally it looks like the following:

normally inside .html or .css

<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
      rel="stylesheet">

Here we use material icon as the example.

1.0 Through href

With href keyword, and searching inside all projects and all types of files, it might be able to find out where the third paries imports are.

2.0 F12

On the browser, press F12, to the Network tab, and then check the domain of each items.

image

In order to further ensure the results, we could click the item, and check the url details. image