Simplified Chrome Extension
This is a basic Chrome extension designed to be easy to understand and modify.
Manifest File (manifest.json):
```json
{
"manifest_version": 3,
"name": "Simplified Extension",
"version": "1.0",
"description": "A simple Chrome extension example.",
"permissions": [
"activeTab"
],
"action": {
"default_popup": "popup.html"
}
}
```
Popup HTML (popup.html):
```html
<!DOCTYPE html>
<html>
<head>
<title>Simplified Extension</title>
</head>
<body>
<h1>Hello from the extension!</h1>
<p>This is a simple popup.</p>
</body>
</html>
```
Explanation:
* manifest.json: This file tells Chrome what your extension does.
* `manifest_version`: Specifies the version of the manifest file format.
* `name`: The name of your extension.
* `version`: The current version of your extension.
* `description`: A brief description of your extension.
* `permissions`: Lists the permissions your extension needs to function. Here, it needs access to the active tab.
* `action`: Defines the popup that appears when the extension icon is clicked.
* popup.html: This file contains the HTML code for the popup window.
How it works:
1. When you install the extension, Chrome reads the `manifest.json` file.
2. When you click the extension icon, Chrome opens the `popup.html` file in a new window.
3. The popup displays the "Hello from the extension!" message.
Design & Collaborate
Marketing made easy
#Simplified