12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "manifest_version": 2,
- "name": "Teknik Uploader",
- "version": "1.0",
-
- "description": "Uploads files to Teknik and adds the link to your clipboard.",
-
- "applications": {
- "gecko": {
- "id": "admin@teknik.io"
- }
- },
-
- "permissions": [
- "contextMenus",
- "activeTab",
- "storage",
- "notifications",
- "clipboardRead",
- "clipboardWrite"
- ],
-
- "browser_action": {
- "default_icon": {
- "16": "images/favicon-16.png",
- "48": "images/favicon-48.png"
- },
- "default_title": "Teknik Upload",
- "default_popup": "dialog/popup.html"
- },
-
- "icons": {
- "16": "images/favicon-16.png",
- "48": "images/favicon-48.png"
- },
-
- "background": {
- "scripts": [
- "content/JQuery/jquery-3.1.1.min.js",
- "content/Crypto-js/aes.js",
- "content/Crypto-js/enc-base64.js",
- "content/Crypto-js/mode-ctr.js",
- "content/Crypto-js/lib-typedarrays.js",
- "content/Crypto-js/pad-nopadding.js",
- "content/background.js"
- ]
- },
-
- "options_ui": {
- "page": "settings/options.html"
- }
- }
|