Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rodzyk committed Jun 18, 2024
0 parents commit 40d0da9
Show file tree
Hide file tree
Showing 8 changed files with 1,678 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/dist
/node_modules
31 changes: 31 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"manifest_version": 3,
"name": "Chytanka helper",
"version": "1.0",
"description": "Adds a button next to the supported links.",
"permissions": [
"activeTab"
],
"icons": {
"48": "assets/icon-48x48.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
]
}
Loading

0 comments on commit 40d0da9

Please sign in to comment.