Skip to content

Commit

Permalink
Merge tag '1.3.0' into develop
Browse files Browse the repository at this point in the history
no message
  • Loading branch information
yusukesaitoh committed Feb 27, 2022
2 parents 9c01bf4 + b9bb3e2 commit d4fdc82
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
25 changes: 17 additions & 8 deletions app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "1.2.0",
"version": "1.3.0",
"manifest_version": 2,
"default_locale": "en",
"icons": {
Expand All @@ -23,13 +23,22 @@
"default_title": "__MSG_browserActionTitle__",
"default_popup": "pages/popup.html"
},
"content_scripts": [{
"matches": ["https://twitter.com/*","https://mobile.twitter.com/*"],
"js": ["scripts/contentscript.js"],
"css": ["styles/contentscript.css"],
"run_at": "document_end"
}],
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://mobile.twitter.com/*"
],
"js": [
"scripts/contentscript.js"
],
"css": [
"styles/contentscript.css"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
]
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "calm-twitter",
"private": true,
"version": "1.2.0",
"version": "1.3.0",
"description": "This extension hides trending information from twitter timelines to make your mind calm.",
"scripts": {
"start": "npm run dev:chrome",
Expand Down Expand Up @@ -61,4 +61,4 @@
"webpack-stream": "7.x.x",
"yargs": "17.x.x"
}
}
}

0 comments on commit d4fdc82

Please sign in to comment.