123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "manifest_version": 2,
- "name": "Teknik Services Extender",
- "version": "1.0",
-
- "description": "Allows easy methods to utilize the Teknik Services.",
-
- "applications": {
- "gecko": {
- "id": "{f7630f56-a7af-4ccd-8555-0667f682b981}"
- }
- },
-
- "permissions": [
- "contextMenus",
- "activeTab",
- "storage",
- "notifications",
- "clipboardRead",
- "clipboardWrite",
- "tabs"
- ],
-
- "browser_action": {
- "browser_style": false,
- "default_icon": {
- "16": "images/favicon-16.png",
- "48": "images/favicon-48.png"
- },
- "default_title": "Teknik Services",
- "default_popup": "views/popup.html"
- },
-
- "commands": {
- "upload-files": {
- "suggested_key": { "default": "Ctrl+Shift+U" },
- "description": "Open a prompt for uploading a file."
- }
- },
-
- "icons": {
- "16": "images/favicon-16.png",
- "48": "images/favicon-48.png"
- },
-
- "background": {
- "page": "views/background.html",
- "persistent": true
- },
-
- "options_ui": {
- "page": "views/options.html"
- }
- }
|