Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vivaldi webpanel #99

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
12 changes: 9 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
/*globals module */
module.exports = {
"env": {
"browser": true,
"es6": true
root: true,
env: {
browser: true,
amd: true,
es6: true
},
parserOptions: {
ecmaVersion: 8
},
"extends": "eslint:recommended",
"rules": {
Expand Down
17 changes: 17 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build_chrome_unpacked",
"type": "shell",
"command": "./unpacked_chrome.bat",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
}
}
},
"version": "2.2.1",
"version": "2.2.2",
"options_ui": {
"page": "options.htm",
"chrome_style": true
Expand Down
Loading