- Notifications
You must be signed in to change notification settings - Fork2
Create browser extension in javascript
NotificationsYou must be signed in to change notification settings
logisticinfotech/create-browser-extension-in-javascript
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Please checkthis article for step by step guide.
- What is Browser extension?
An extension is a mini software tool for modifying a web browser.many extensions are available, including user interface,modification,add blocking and screenshot.
- How can we make extension?
it is easy to create your own extension.We need to required manifest.json file and other html,script,css and required image or icon.
You must create manifest.json file in root directory
{ "manifest_version": 2, "name": "Personal Note", "description": "its simple to save note.", "version": "1.0", "auther":"Ramesh Vaniya", "icons": { "64": "icons/icon64x64.png" }, "browser_action": { "default_icon": "icons/icon64x64.png", "default_popup": "popup.html" }, "background": { "page": "background.html" }, "permissions": [ "identity" ], "content_security_policy":"script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'", "oauth2": { "client_id": "client.apps.googleusercontent.com", "scopes": [ "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile" ] }, "key":"google chrome extension public key"}
- Please follow below image for open extension list.
- You need to allow development mode in google chrome.
- Please follow below image for open extension list.
- Installed extension
You can get our extension from firefox store
About
Create browser extension in javascript
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Contributors3
Uh oh!
There was an error while loading.Please reload this page.