@@ -0,0 +1,3 @@ | |||||
node_modules/ | |||||
packages/ | |||||
dist/ |
@@ -0,0 +1,26 @@ | |||||
# Bookmark audio fragment | |||||
Browser extension to bookmark fragments of audio files. | |||||
## Contribute | |||||
This project uses [webextension-toolbox](https://github.com/HaNdTriX/webextension-toolbox) for building/bundling the source code. It provides the following commands: | |||||
### Install | |||||
$ npm install | |||||
### Development | |||||
npm run dev chrome | |||||
npm run dev firefox | |||||
npm run dev opera | |||||
npm run dev edge | |||||
### Build | |||||
npm run build chrome | |||||
npm run build firefox | |||||
npm run build opera | |||||
npm run build edge |
@@ -0,0 +1,14 @@ | |||||
{ | |||||
"appName": { | |||||
"message": "Bookmark audio fragment", | |||||
"description": "The name of the application" | |||||
}, | |||||
"appShortName": { | |||||
"message": "Bookmark audio fragment", | |||||
"description": "The short_name (maximum of 12 characters recommended) is a short version of the app's name." | |||||
}, | |||||
"appDescription": { | |||||
"message": "Browser extension to bookmark fragments of audio files", | |||||
"description": "The description of the application" | |||||
} | |||||
} |
@@ -0,0 +1,19 @@ | |||||
{ | |||||
"manifest_version": 2, | |||||
"default_locale": "en", | |||||
"icons": { | |||||
}, | |||||
"background": { | |||||
"scripts": [ | |||||
"scripts/background.js" | |||||
] | |||||
}, | |||||
"content_scripts": [{ | |||||
"matches": ["<all_urls>"], | |||||
"js": ["scripts/contentscript.js"], | |||||
"run_at": "document_end" | |||||
}], | |||||
"permissions": [ | |||||
"activeTab" | |||||
] | |||||
} |
@@ -0,0 +1,18 @@ | |||||
{ | |||||
"name": "bookmark-audio-fragment", | |||||
"version": "0.0.1", | |||||
"description": "Browser extension to bookmark fragments of audio files", | |||||
"url": "https://github.com/salus-sage/bookmark-audio-fragment", | |||||
"contributors": [ | |||||
"salus-sage", | |||||
"Gerben" | |||||
], | |||||
"scripts": { | |||||
"dev": "webextension-toolbox dev", | |||||
"build": "webextension-toolbox build" | |||||
}, | |||||
"devDependencies": { | |||||
"webextension-toolbox": "latest" | |||||
}, | |||||
"dependencies": {} | |||||
} |