Initial commit

This commit is contained in:
2025-04-13 20:29:39 +02:00
commit 95d51e3c57
7 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"manifest_version": 2,
"name": "Copy GC Codes",
"description": "Copy the GC codes of all opened geocaches.",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
"background": { "scripts": ["jquery-3.2.1.min.js", "getallgccodes.js"] },
"icons": { "16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}