Skip to content

Commit

Permalink
changed manifest description
Browse files Browse the repository at this point in the history
  • Loading branch information
va3y committed May 11, 2021
1 parent 3f18f8c commit b1a8eec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.DS_Store
node_modules
/dist
dist.crx


# local env files
Expand Down
4 changes: 2 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Vue release watcher",
"homepage_url": "http://localhost:8080/",
"description": "A Vue Browser Extension",
"description": "A Chrome extension that notifies you about latest Vue ecosystem releases. Developed by Noveo: https://noveogroup.com",
"default_locale": "en",
"permissions": [
"<all_urls>",
Expand All @@ -24,7 +24,7 @@
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Vue release watchers",
"default_title": "Vue release watcher",
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
Expand Down
8 changes: 6 additions & 2 deletions src/popup/layouts/Default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/>
<span class="default-layout__credits"
>Made by
<a href="https://noveogroup.com/" target="_blank">Noveo</a></span
<a href="https://noveogroup.com/" target="_blank" class="default-layout__credits--link">Noveo</a></span
>
</footer>
</div>
Expand All @@ -52,7 +52,11 @@
justify-content: space-between;
}
&__credits {
font-size: 80%;
font-size: 85%;
&--link {
text-decoration: none;
color: $--color-primary;
}
}
}
</style>

0 comments on commit b1a8eec

Please sign in to comment.