Skip to content

Commit

Permalink
Create extension manifest and stylesheet to hide banner
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelillo committed Apr 18, 2019
1 parent 6335c1f commit 3e0e645
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "Hide LastPass Error Banner",
"version": "1.0",
"description": "Hides the 'An error occurred' LastPass banner.",
"content_scripts": [{
"css": ["style.css"],
"matches": ["<all_urls>"]
}],
"manifest_version": 2
}
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
div[id^=lptopspacer] {
display: none;
}
div[id^=lpiframeoverlay] {
display: none;
}

0 comments on commit 3e0e645

Please sign in to comment.