1
0
Fork 0
mirror of https://github.com/Findus23/acronomy-browser-ext.git synced 2024-09-19 11:53:44 +02:00

initial commit

This commit is contained in:
Lukas Winkler 2020-07-27 14:46:58 +02:00
commit c709b4b58d
Signed by: lukas
GPG key ID: 54DE4D798D244853
6 changed files with 5896 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
.idea/
node_modules
web-ext-artifacts

BIN
icons/1024.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
icons/128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

24
manifest.json Normal file
View file

@ -0,0 +1,24 @@
{
"manifest_version": 2,
"name": "Acronomy",
"short_name": "Astronomical Acronym Search",
"version": "1.0.0",
"description": "",
"permissions": [],
"icons": {
"1024": "icons/1024.png",
"128": "icons/128.png"
},
"chrome_settings_overrides": {
"homepage": "https://acronomy.lw1.at",
"search_provider": {
"name": "Acronomy",
"keyword": "acr",
"favicon_url": "https://acronomy.lw1.at/static/images/logo.png",
"search_url": "https://acronomy.lw1.at/search?q={searchTerms}",
"suggest_url": "https://acronomy.lw1.at/search/suggest?q={searchTerms}",
"encoding": "UTF-8",
"is_default": false
}
}
}

14
package.json Normal file
View file

@ -0,0 +1,14 @@
{
"name": "acronmomy-browser-ext",
"version": "1.0.0",
"description": "",
"dependencies": {},
"devDependencies": {
"web-ext": "^2.3.0"
},
"scripts": {
"build": "web-ext build --ignore-files 'yarn*' 'package.json'",
"webext_lint": "web-ext lint --warnings-as-errors --ignore-files 'yarn*' 'package.json'"
}
}

5855
yarn.lock Normal file

File diff suppressed because it is too large Load diff