Chrome Extension Template
- Decide on a name for you extension.
- Replace the
EXTENSION_NAME
in the file build.yml with your chosen name. - Rename the directory
extension_name/
with the same name. - In the
manifest.json
:- Give the extension a name and description.
- Replace the string in
matches
to a regex that represents the urls in which you want the extension to work in.
- In the file
code.js
add you code. If you rename the file, you should change it inmanifest.json
as well.
- On each push - an artifact with the current state of the extension (as crx and zip formats) will be available.
- On each tag a release will be created (If not already created by you) with the crx and zip files as assets.
- The tag has to be in a valid format! 1-4 numbers separated by dots. (v1.2.3 is not valid and so as 1.0a1)