{"id":19040219,"url":"https://github.com/logisticinfotech/create-browser-extension-in-javascript","last_synced_at":"2026-04-18T00:02:39.862Z","repository":{"id":97376141,"uuid":"177280456","full_name":"logisticinfotech/create-browser-extension-in-javascript","owner":"logisticinfotech","description":"Create browser extension in javascript","archived":false,"fork":false,"pushed_at":"2019-05-16T14:36:23.000Z","size":278,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-02T07:10:23.971Z","etag":null,"topics":["browser-extension","chrome-extension","extension","firebase","firefox-extension","javascript","javascript-browser-extension","javascript-demo","personal-notes"],"latest_commit_sha":null,"homepage":"https://www.logisticinfotech.com/blog/how-to-create-browser-extension/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/logisticinfotech.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-23T11:27:54.000Z","updated_at":"2020-07-23T05:11:01.000Z","dependencies_parsed_at":"2023-03-22T22:31:00.620Z","dependency_job_id":null,"html_url":"https://github.com/logisticinfotech/create-browser-extension-in-javascript","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Fcreate-browser-extension-in-javascript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Fcreate-browser-extension-in-javascript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Fcreate-browser-extension-in-javascript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logisticinfotech%2Fcreate-browser-extension-in-javascript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/logisticinfotech","download_url":"https://codeload.github.com/logisticinfotech/create-browser-extension-in-javascript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240100521,"owners_count":19747682,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser-extension","chrome-extension","extension","firebase","firefox-extension","javascript","javascript-browser-extension","javascript-demo","personal-notes"],"created_at":"2024-11-08T22:21:14.561Z","updated_at":"2026-04-18T00:02:34.837Z","avatar_url":"https://github.com/logisticinfotech.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Browser Extension \n\nPlease check [this](https://www.logisticinfotech.com/blog/how-to-create-browser-extension/) article for step by step guide. \n\n## How to create browser extension?\n\n- **What is Browser extension?**\n\nAn extension is a  mini software tool for modifying a web browser. \nmany extensions are available, including user interface,modification,add blocking and screenshot.\n\n\n- **How can we make extension?**\n\nit is easy to create your own extension.We need to required manifest.json file and other html,script,css and required image or icon.\n\n**You must create manifest.json file in root directory**\n```\n{\n  \"manifest_version\": 2,\n  \"name\": \"Personal Note\",\n  \"description\": \"its simple to save note.\",\n  \"version\": \"1.0\",\n  \"auther\":\"Ramesh Vaniya\",\n  \"icons\": {\n    \"64\": \"icons/icon64x64.png\"\n  },\n  \"browser_action\": {\n    \"default_icon\": \"icons/icon64x64.png\",\n    \"default_popup\": \"popup.html\"\n  },\n  \"background\": {\n    \"page\": \"background.html\"\n  },\n  \"permissions\": [\n    \"identity\"\n  ],\n  \"content_security_policy\":\"script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'\",\n  \"oauth2\": {\n    \"client_id\": \"client.apps.googleusercontent.com\",\n    \"scopes\": [\n      \"https://www.googleapis.com/auth/userinfo.email\",\n      \"https://www.googleapis.com/auth/userinfo.profile\"\n    ]\n  },\n  \"key\":\"google chrome extension public key\"\n}\n\n```\n## Upload extension in your local browser (Google chrome)\n\n- Please follow below image for open extension list.\n\u003cimg src=\"settings/chrome-setting1.png\"/\u003e\n\n- You need to allow development mode in google chrome.\n\u003cimg src=\"settings/chrome-setting2.png\"/\u003e\n\n## Upload extension in your local browser (Firefox)\n\n- Please follow below image for open extension list.\n\u003cimg src=\"settings/firefox-setting1.png\"/\u003e\n\n- **Installed extension**\n\u003cimg src=\"settings/firefox-setting2.png\"/\u003e\n\n[You can get our extension from firefox store](https://addons.mozilla.org/en-US/firefox/addon/personal-note)\n\n[You can get our extension from google chrome store](https://chrome.google.com/webstore/detail/bbcencfbimebbbmlpaokmndbegmecghd)\n\n\u003cimg src=\"icons/note-screenshot.png\"\u003e\u003c/p\u003e\n\n[You can check full detail about it. you can open our blog](https://www.logisticinfotech.com/blog/how-to-create-browser-extension/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogisticinfotech%2Fcreate-browser-extension-in-javascript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flogisticinfotech%2Fcreate-browser-extension-in-javascript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogisticinfotech%2Fcreate-browser-extension-in-javascript/lists"}