commit 3febb7da905adff423b22dc427f9e4cdd764b18b Author: OverPoweredDev Date: Sat May 22 18:56:50 2021 +0530 added manifest key and boilerplate diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..9ebeb55 --- /dev/null +++ b/manifest.json @@ -0,0 +1,17 @@ +{ + "name": "Apertium WebExt", + "manifest_version": 2, + "version" : "1.0", + "description": "Cross-browser WebExtension Frontend for the Apertium APy service", + "options_page": "options.html", + "browser_action": { + "default_title": "Apertium WebExt", + "default_popup": "popup/popup.html", + "default_icon": { + "16": "icons/icon16.png", + "32": "icons/icon32.png", + "64": "icons/icon64.png", + "128": "icons/icon128.png" + } + } +} \ No newline at end of file diff --git a/options.html b/options.html new file mode 100644 index 0000000..6053fdb --- /dev/null +++ b/options.html @@ -0,0 +1,10 @@ + + + + + Apertium WebExt + + + + + \ No newline at end of file diff --git a/popup/popup.html b/popup/popup.html new file mode 100644 index 0000000..e711485 --- /dev/null +++ b/popup/popup.html @@ -0,0 +1,10 @@ + + + + + + + +

Hello!

+ + \ No newline at end of file diff --git a/popup/popup.js b/popup/popup.js new file mode 100644 index 0000000..e69de29