Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal-Flores committed Sep 12, 2023
1 parent 0874c40 commit 5a82ac2
Show file tree
Hide file tree
Showing 15 changed files with 1,724 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"configureZshAsDefaultShell": true,
"installOhMyZsh": true,
"upgradePackages": true
}
},
"customizations": {
"vscode" : {
"extensions" : [
"github.copilot",
"hamza-aziane.obsidian-dark"
]
}
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
16 changes: 16 additions & 0 deletions assets/html/popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<link rel="stylesheet" href="css/popup.css">
</head>
<body>
<script src="../../dist/popup.js"></script>
<header>
<h1>Tinkercad circuits SVG Extractor</h1>
</header>
<main>
<div id="download"></div>
</main>
</body>
</html>
Binary file added assets/icons/128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name" : "Tinkercad Circuits SVG Extractor",
"version" : "1.0",
"description" : "A tool to extract Tinkercad Circuits as SVGs",
"manifest_version" : 3,
"author" : "Pascal Flores",
"permissions": [
"webRequest",
"downloads",
"storage"
],
"host_permissions" : [
"<all_urls>"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["dist/content_script.js"]
}
],
"icons" : {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
"48": "assets/icons/48.png",
"128": "assets/icons/128.png"
},
"action": {
"default_popup": "assets/html/popup.html",
"default_title": "Tinkercad Circuits SVG Extractor"
}

}
Loading

0 comments on commit 5a82ac2

Please sign in to comment.