https://github.com/riju18/chrome_extension
make your own simple awesome chrome extension & publish in web store
https://github.com/riju18/chrome_extension
css3 html5 json
Last synced: about 2 months ago
JSON representation
make your own simple awesome chrome extension & publish in web store
- Host: GitHub
- URL: https://github.com/riju18/chrome_extension
- Owner: riju18
- Created: 2018-04-21T17:19:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-21T17:30:41.000Z (about 7 years ago)
- Last Synced: 2025-01-28T12:44:27.372Z (4 months ago)
- Topics: css3, html5, json
- Language: HTML
- Size: 10.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# make simple awesome chrome_extension:
# as google chrome extension procedure:
first, make a file named menifest.json
# add these in json file, these are recommanded:
{
"manifest_version" : 2,
"name" : "linkin",
"version" : "1.0.0",
"description" : "follow these links & stay connectd",
"icons": {"128" : "r_128.png"},
"browser_action" : {
"default_icon" : "r_19.png",
"default_popup" : "index.html"
},
"permissions" : ["activeTab"]
}for more information: search "chrome extension menifest"
# create a html file what we want to do.
# we can create any js file if need.
# go to chrome seetings->more tools->extensions->enable developer mode;
# click load unpacked.
# show the folder
# finish
# if we want to publish extension:
follow the link: https://developer.chrome.com/webstore/publish
click chrome developer dashboard
upload the zip file
read the instructions
pay $5.00
publish it
# finish