Initial commit

This commit is contained in:
2024-12-05 08:29:18 -08:00
commit 32c62f04ed
13 changed files with 796 additions and 0 deletions

30
manifest.json Normal file
View File

@@ -0,0 +1,30 @@
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Wayback Machine Auto-Archiver",
"version": "0.3.3",
"description": "Automatically Archive Pages.",
"permissions": [
"https://web.archive.org/*",
"tabs"
],
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"manifest_version": 2,
"background": {
"scripts": ["background.js"],
"persistent": false
}
}