Advertisement
FlyFar

Template/manifest.json

Nov 19th, 2023 (edited)
807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.43 KB | Cybersecurity | 0 0
  1. {
  2.   "name": "Extension Name",
  3.   "description": "Extension Description",
  4.   "version": "1.0",
  5.   "permissions": [
  6.     "activeTab"
  7.   ],
  8.   "browser_action": {
  9.     "default_title": "Extension Default Title"
  10.   },
  11.   "content_scripts": [
  12.   {
  13.       "matches": ["<all_urls>"],
  14.       "js": ["temis.js"]
  15.   }
  16.   ],
  17.   "manifest_version": 2,
  18.   "icons": { "16": "icon16.png",
  19.            "48": "icon48.png",
  20.           "128": "icon128.png" }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement