Skip to content

Commit

Permalink
Update version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonr committed May 31, 2020
1 parent 0034f8a commit 1446404
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 18 deletions.
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "super_css_inject",
"version": "1.1.0",
"version": "1.2.0",
"description": "Keep multiple stylesheets ready to inject and change on the fly. Works with **LiveReload**. Compatible with Chrome and Firefox.",
"main": "index.js",
"dependencies": {
"stylelint-config-recommended": "^2.2.0"
},
"dependencies": {},
"devDependencies": {
"eslint": "^6.1.0"
"eslint": "^6.1.0",
"stylelint-config-recommended": "^2.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand All @@ -22,4 +21,4 @@
"url": "https://github.com/nelsonr/super_css_inject/issues"
},
"homepage": "https://github.com/nelsonr/super_css_inject#readme"
}
}
28 changes: 16 additions & 12 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,41 @@
{
"name": "Super CSS Inject",
"version": "1.1.3",
"version": "1.2.0",
"description": "Keep multiple stylesheets ready to inject and change on the fly!",
"manifest_version": 2,

"permissions": ["activeTab", "storage"],

"permissions": [
"activeTab",
"storage"
],
"icons": {
"48": "icons/48x48.png",
"64": "icons/64x64.png",
"128": "icons/128x128.png"
},

"background": {
"scripts": ["background.js"]
"scripts": [
"background.js"
]
},

"content_scripts": [
{
"js": ["SuperCSSInject.js"],
"matches": ["http://*/*", "https://*/*"],
"js": [
"SuperCSSInject.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],

"browser_action": {
"default_title": "Enable Super CSS Inject",
"default_icon": "icons/48x48.png",
"default_popup": "popup.html"
},

"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}
}

0 comments on commit 1446404

Please sign in to comment.