23 lines
518 B
JSON
23 lines
518 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|