Skip to content

Commit

Permalink
Merge pull request #1424.
Browse files Browse the repository at this point in the history
Move contentscripts into their own directory.

Conflicts:
	src/manifest.json
  • Loading branch information
ghostwords committed Jun 12, 2017
2 parents 77d53c7 + 7e34001 commit dfce0b8
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion release-utils/make-signed-xpi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fi

# TODO restore: https://github.com/EFForg/privacybadger/issues/1158
echo "remove fingerprinting"
sed -i '/ "js\/fingerprinting.js",/d' ../checkout/src/manifest.json
sed -i '/ "js\/contentscripts\/fingerprinting.js",/d' ../checkout/src/manifest.json

echo "change author value"
sed -i 's/"author": { "email": "[email protected]" },/"author": "[email protected]",/' ../checkout/src/manifest.json
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
},
{
"js": [
"js/clobbercookie.js",
"js/clobberlocalstorage.js",
"js/fingerprinting.js",
"js/supercookie.js"
"js/contentscripts/clobbercookie.js",
"js/contentscripts/clobberlocalstorage.js",
"js/contentscripts/fingerprinting.js",
"js/contentscripts/supercookie.js"
],
"matches": [
"<all_urls>"
Expand All @@ -67,7 +67,7 @@
},
{
"js": [
"js/socialwidgets.js"
"js/contentscripts/socialwidgets.js"
],
"matches": [
"<all_urls>"
Expand Down

0 comments on commit dfce0b8

Please sign in to comment.