<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Pratik kumar</title>
    <description>The latest articles on DEV Community by Pratik kumar (@pratik_kumar).</description>
    <link>https://dev.to/pratik_kumar</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F666101%2F21bdb9bf-f524-4af2-89a5-d326897bdf1b.jpg</url>
      <title>DEV Community: Pratik kumar</title>
      <link>https://dev.to/pratik_kumar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pratik_kumar"/>
    <language>en</language>
    <item>
      <title>My first Chrome Extension .</title>
      <dc:creator>Pratik kumar</dc:creator>
      <pubDate>Tue, 21 Sep 2021 06:05:33 +0000</pubDate>
      <link>https://dev.to/pratik_kumar/my-first-chrome-extension-4567</link>
      <guid>https://dev.to/pratik_kumar/my-first-chrome-extension-4567</guid>
      <description>&lt;p&gt;So, I was getting bored of making websites and then I decided to make a chrome extension.&lt;/p&gt;

&lt;h2&gt;
  
  
  The folder structure
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MLESBluY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/z2w53l7egay60b5ckcfs.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MLESBluY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/z2w53l7egay60b5ckcfs.PNG" alt="folders"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Manifest file
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7GWDVfwc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f0th8z1bec4vx2784lbe.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7GWDVfwc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f0th8z1bec4vx2784lbe.PNG" alt="manifest"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This file is a special file. It contains the information about the chrome extension. It is a .json type file.&lt;/p&gt;

&lt;p&gt;It must mandatorily contain:&lt;/p&gt;

&lt;p&gt;1.The Manifest version&lt;br&gt;
2.The name of the extension.&lt;br&gt;
3.The version of the extension. &lt;/p&gt;

&lt;h2&gt;
  
  
  The HTML file
&lt;/h2&gt;

&lt;p&gt;A container div and an unordered list for the list of jokes.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uxSSf7Zb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/atr32fqnb8zhv5kf296y.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uxSSf7Zb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/atr32fqnb8zhv5kf296y.PNG" alt="index"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The JavaScript file
&lt;/h2&gt;

&lt;p&gt;Here is our main logic. Here, we request data from an API and parse it into required state. We dynamically create new list item and put these data into it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tcUPqu3M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l5ifde43gx5jp4vzqobq.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tcUPqu3M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l5ifde43gx5jp4vzqobq.PNG" alt="js"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The CSS file
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--FTym0IB_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l441sjhrfeklp4jmp36u.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--FTym0IB_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l441sjhrfeklp4jmp36u.PNG" alt="style"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  So, that's it for the code and here's the result
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--z2C41IBh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bayra4uc4y8rtnv2vk88.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--z2C41IBh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bayra4uc4y8rtnv2vk88.PNG" alt="Capgreagture"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for your time. &lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>Reasons behind learning JavaScript...</title>
      <dc:creator>Pratik kumar</dc:creator>
      <pubDate>Sun, 19 Sep 2021 05:37:16 +0000</pubDate>
      <link>https://dev.to/pratik_kumar/reasons-behind-learning-javascript-1ce7</link>
      <guid>https://dev.to/pratik_kumar/reasons-behind-learning-javascript-1ce7</guid>
      <description>&lt;p&gt;This language is more than a synonym for CoffeeHandwriting – it’s the perfect programming language for beginners to use immediately in their career, as well as providing a perfect jumping-off point for any future developments. It’s totally future-proof, since nearly all of the web relies on it. Why learn JavaScript? To summarize the reasons , the reasons why am I learning JavaScript are:&lt;/p&gt;

&lt;p&gt;-It’s a multifunctional language.&lt;br&gt;
-It’s easy to get started with.&lt;br&gt;
-There’s a comprehensive set of frameworks and libraries to make your life easier.&lt;br&gt;
-The community is firmly entrenched and stellar.&lt;br&gt;
-It’s a highly sought-after professional skill.&lt;br&gt;
-It can help you learn your next programming language.&lt;/p&gt;

&lt;p&gt;My final thoughts-&lt;br&gt;
In other words, it’s a great language that can help you accomplish a lot both in your personal life and in your professional life. Out of all the programming languages you could start learning in 2021, JavaScript must come top of the list.&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
  </channel>
</rss>
