Skip to content

Commit 0fc3c6c

Browse files
committed
Fix some plugin strings
1 parent 5b04949 commit 0fc3c6c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"manifest_version": 2,
3-
"name": "Disengaged - an Attention Blocker",
3+
"name": "Disengaged - an Addiction Blocker",
44
"short_name": "Disengaged",
5-
"version": "0.1.3",
5+
"version": "0.1.4",
66
"description": "The internet sux rn so I deleted the bad parts",
77
"homepage_url": "https://github.com/a13o/disengaged",
88
"icons": {
@@ -16,7 +16,7 @@
1616
},
1717
"browser_action": {
1818
"default_icon": "icons/icon_48_on.png",
19-
"default_title": "Disengaged - Attention Blocker"
19+
"default_title": "Disengaged"
2020
},
2121
"background": {
2222
"scripts": ["src/background.js"]

src/background.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function updateIcon () {
8181
path: isEnabled ? 'icons/icon_48_on.png' : 'icons/icon_48_off.png'
8282
})
8383
browser.browserAction.setTitle({
84-
title: `Disengaged - Attention Blocker (${isEnabled ? 'on' : 'off'})`
84+
title: `Disengaged (${isEnabled ? 'on' : 'off'})`
8585
})
8686
}
8787

0 commit comments

Comments
 (0)