Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.44 KB | None | 0 0
  1. {
  2.     "manifest_version": 2,
  3.     "name": "Chrome Extension",
  4.     "version": "1.0",
  5.     "description": "Change all links!",
  6.     "permissions": ["storage","tabs","activeTab", "clipboardRead", "clipboardWrite", "https://ajax.googleapis.com/"],
  7.     "content_scripts": [{
  8.         "matches": ["<all_urls>"],
  9.         "js": ["content.js"],
  10.         "run_at": "document_end"
  11.     }],
  12.     "background": {
  13.         "scripts": ["background.js"],
  14.         "persistent": false
  15.     },
  16.     "browser_action": {
  17.    
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement