diff --git a/.gitignore b/.gitignore index 85583dc..bcb16e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +Credentials.mk .web-extension-id improved-crowdcast-ux.xpi improved-crowdcast-ux.crx diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..370abe8 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +include Credentials.mk + +.PHONY: improved-crowdcast-ux.xpi + +improved-crowdcast-ux.xpi: + web-ext sign --api-key=$(API_KEY) --api-secret=$(API_SECRET) \ + --source-dir=improved-crowdcast-ux \ + --artifacts-dir=. --filename=improved-crowdcast-ux.xpi diff --git a/LICENSE b/improved-crowdcast-ux/LICENSE similarity index 100% rename from LICENSE rename to improved-crowdcast-ux/LICENSE diff --git a/content.css b/improved-crowdcast-ux/content.css similarity index 100% rename from content.css rename to improved-crowdcast-ux/content.css diff --git a/content.js b/improved-crowdcast-ux/content.js similarity index 100% rename from content.js rename to improved-crowdcast-ux/content.js diff --git a/emojis.js b/improved-crowdcast-ux/emojis.js similarity index 100% rename from emojis.js rename to improved-crowdcast-ux/emojis.js diff --git a/icons/128.png b/improved-crowdcast-ux/icons/128.png similarity index 100% rename from icons/128.png rename to improved-crowdcast-ux/icons/128.png diff --git a/icons/16.png b/improved-crowdcast-ux/icons/16.png similarity index 100% rename from icons/16.png rename to improved-crowdcast-ux/icons/16.png diff --git a/icons/32.png b/improved-crowdcast-ux/icons/32.png similarity index 100% rename from icons/32.png rename to improved-crowdcast-ux/icons/32.png diff --git a/icons/48.png b/improved-crowdcast-ux/icons/48.png similarity index 100% rename from icons/48.png rename to improved-crowdcast-ux/icons/48.png diff --git a/icons/64.png b/improved-crowdcast-ux/icons/64.png similarity index 100% rename from icons/64.png rename to improved-crowdcast-ux/icons/64.png diff --git a/improved-crowdcast-ux/icons/x.svg b/improved-crowdcast-ux/icons/x.svg new file mode 100644 index 0000000..8a45715 --- /dev/null +++ b/improved-crowdcast-ux/icons/x.svg @@ -0,0 +1,86 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/manifest.json b/improved-crowdcast-ux/manifest.json similarity index 96% rename from manifest.json rename to improved-crowdcast-ux/manifest.json index eca9c3a..d3d155b 100644 --- a/manifest.json +++ b/improved-crowdcast-ux/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Improved Crowdcast UX", - "version": "0.1", + "version": "0.2", "icons": { "16": "icons/16.png", "32": "icons/32.png", diff --git a/popup.css b/improved-crowdcast-ux/popup.css similarity index 100% rename from popup.css rename to improved-crowdcast-ux/popup.css diff --git a/popup.html b/improved-crowdcast-ux/popup.html similarity index 100% rename from popup.html rename to improved-crowdcast-ux/popup.html diff --git a/popup.js b/improved-crowdcast-ux/popup.js similarity index 100% rename from popup.js rename to improved-crowdcast-ux/popup.js