Warning, /plasma/plasma-browser-integration/extension/manifest.json is written in an unsupported language. File is not indexed.

0001 {
0002   "manifest_version": 2,
0003 
0004   "name": "Plasma Integration",
0005   "short_name": "Plasma",
0006   "description": "Provides better integration with the KDE Plasma desktop.",
0007   "version": "1.9",
0008 
0009   "default_locale": "en",
0010 
0011   "author": "Kai Uwe Broulik <kde@privat.broulik.de>",
0012 
0013   "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Wz6JigIdPBxPJvYrnjuKM3X4YEaUHgyOW2TM1G1Maxook1HO8vLFGhBR7g3jEQ7Yw9PTa6ZAa8J/I9a/1EQz0Ssx2+m3R9SvJfdKSCrCth8nwMpB8V8I5EhiUoW57kM0v9r/18Buem5cBIo0EnSAVCbmNG95R5jtg62P4+LNGEwHk5L7RSblXUN2hhUwXty4A98EXD6T2Pnpu1m8nRF2B1t5AcspSMV5ECnL9x8kT5bup1gJo0FGTz6C+1huDNRaI3OY1YDWyvCVRFXlAhuFERTW6siMdghK++kYM43H7cvJMFYnVVuffD9WNRsUCI9V0SrqYbPre/2nEl+8VUXVwIDAQAB",
0014 
0015   "icons": {
0016     "16": "icons/plasma-16.png",
0017     "32": "icons/plasma-32.png",
0018     "48": "icons/plasma-48.png",
0019     "128": "icons/plasma-128.png"
0020   },
0021 
0022   "background": {
0023     "scripts": [
0024         "constants.js",
0025         "utils.js",
0026         "extension-utils.js",
0027 
0028         "extension-kdeconnect.js",
0029         "extension-mpris.js",
0030         "extension-downloads.js",
0031         "extension-tabsrunner.js",
0032         "extension-purpose.js",
0033         "extension-historyrunner.js",
0034 
0035         "extension.js"
0036     ],
0037     "persistent": false
0038   },
0039 
0040   "browser_action": {
0041     "browser_style": true,
0042     "default_popup": "action_popup.html",
0043     "theme_icons": [{
0044       "light": "icons/plasma-dark-16.png",
0045       "dark": "icons/plasma-16.png",
0046       "size": 16
0047     }, {
0048       "light": "icons/plasma-dark-32.png",
0049       "dark": "icons/plasma-32.png",
0050       "size": 32
0051     }, {
0052       "light": "icons/plasma-dark-48.png",
0053       "dark": "icons/plasma-48.png",
0054       "size": 48
0055     }, {
0056       "light": "icons/plasma-dark-128.png",
0057       "dark": "icons/plasma-128.png",
0058       "size": 128
0059     }]
0060   },
0061 
0062   "content_scripts": [
0063     {
0064       "matches": ["*://*/*"],
0065       "js": ["constants.js", "utils.js", "content-utils.js", "content-script.js"],
0066       "run_at":"document_start",
0067       "all_frames": true,
0068       "match_about_blank": true
0069     }
0070   ],
0071 
0072   "web_accessible_resources": [
0073     "page-script.js"
0074   ],
0075 
0076   "options_ui": {
0077     "page": "options.html",
0078     "chrome_style": true
0079   },
0080   "permissions": [
0081     "nativeMessaging",
0082     "notifications",
0083     "storage",
0084     "downloads",
0085     "tabs",
0086     "<all_urls>",
0087     "contextMenus"
0088   ],
0089 
0090   "optional_permissions": [
0091     "history"
0092   ],
0093 
0094     "applications": {
0095     "gecko": {
0096       "id": "plasma-browser-integration@kde.org",
0097       "strict_min_version": "50.0"
0098     }
0099   }
0100 }