diff --git a/content_script.js b/content_script.js new file mode 100644 index 0000000..dfe2f88 --- /dev/null +++ b/content_script.js @@ -0,0 +1 @@ +//TODO: Code, der auf trello.com ausgeführt wird \ No newline at end of file diff --git a/icons/icon.png b/icons/icon.png new file mode 100644 index 0000000..063cfa8 Binary files /dev/null and b/icons/icon.png differ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..78d6087 --- /dev/null +++ b/manifest.json @@ -0,0 +1,24 @@ +{ + "manifest_version": 2, + "name": "Trektor", + "description": "Browser-Extension zum automatischen Anlegen von Toggl tracking tasks", + "version": "0.0.1", + "icons": { + "64": "icons/icon.png" + }, + + "content_scripts": [ + { + "matches": [ + "*://trello.com/*" + ], + "js": [ + "content_script.js" + ] + } + ], + + "options_ui": { + "page": "options/index.html" + } +} \ No newline at end of file diff --git a/options/index.html b/options/index.html new file mode 100644 index 0000000..ed2c975 --- /dev/null +++ b/options/index.html @@ -0,0 +1,11 @@ + + + + + + + +

Extension settings

+ + + diff --git a/options/script.js b/options/script.js new file mode 100644 index 0000000..5a71dfb --- /dev/null +++ b/options/script.js @@ -0,0 +1 @@ +//extension settings script diff --git a/options/style.css b/options/style.css new file mode 100644 index 0000000..001d5c5 --- /dev/null +++ b/options/style.css @@ -0,0 +1,3 @@ +h1 { + font-style: italic; +}