Created
January 17, 2024 17:58
-
-
Save mhsattarian/673f2e3058b3791b75480ac489f4c2ed to your computer and use it in GitHub Desktop.
A simple contentScript Chrome extension to add a download button to Archillect images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 3, | |
"name": "Archillect downloader", | |
"description": "some description!", | |
"version": "0.1", | |
"icons": { "64": "icon.png" }, | |
"content_scripts": [ | |
{ | |
"matches": ["https://archillect.com/*"], | |
"js": ["content.js"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment