Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content_script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//TODO: Code, der auf trello.com ausgeführt wird
Binary file added icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"manifest_version": 2,
"name": "Trecktor",
Comment thread
This conversation was marked as resolved.
Outdated
"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"
}
}
11 changes: 11 additions & 0 deletions options/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1>Extension settings</h1>
<script src="script.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions options/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//extension settings script
3 changes: 3 additions & 0 deletions options/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
h1 {
font-style: italic;
}