Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wfzyx committed Dec 3, 2024
1 parent 2d0d55b commit 34235f5
Show file tree
Hide file tree
Showing 24 changed files with 305 additions and 1,296 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
dist.js
ext.zip
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ This sample demonstrates how developers can use content scripts which employ Doc
2. Load this directory in Chrome as an [unpacked extension](https://developer.chrome.com/docs/extensions/mv3/getstarted/development-basics/#load-unpacked).
3. Navigate to a Chrome extension or Chrome Webstore documentation page with an article element. [Here](https://developer.chrome.com/docs/webstore/publish) is an example of a webpage with an article element.
4. The extension will provide an estimated reading time for the text in that article element. Here is the [link](https://developer.chrome.com/docs/extensions/get-started/tutorial/scripts-on-every-tab) for the full instructions.

<a href="https://www.flaticon.com/free-icons/cryptocurrency" title="cryptocurrency icons">Cryptocurrency icons created by Freepik - Flaticon</a>
122 changes: 0 additions & 122 deletions btc.ts

This file was deleted.

Binary file modified bun.lockb
Binary file not shown.
Binary file modified images/icon-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 modified images/icon-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 modified images/icon-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 modified images/icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"manifest_version": 3,
"name": "Bitcoin Companion",
"version": "1.0",
"description": "Add the reading time to Chrome Extension documentation articles",
"version": "0.1.0",
"description": "Adds a tooltip on hover to all money amount with the current exchange rate in bitcoin bits",
"permissions": ["storage"],
"icons": {
"16": "images/icon-16.png",
Expand All @@ -13,7 +13,7 @@
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["btc.js"],
"js": ["dist.js"],
"run_at": "document_end"
}
]
Expand Down
42 changes: 0 additions & 42 deletions node_modules/currency.js/dist/currency.d.ts

This file was deleted.

Loading

0 comments on commit 34235f5

Please sign in to comment.