Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "manifest_version": 2,
- "name": "Chrome Extension",
- "version": "1.0",
- "description": "Change all links!",
- "permissions": ["storage","tabs","activeTab", "clipboardRead", "clipboardWrite", "https://ajax.googleapis.com/"],
- "content_scripts": [{
- "matches": ["<all_urls>"],
- "js": ["content.js"],
- "run_at": "document_end"
- }],
- "background": {
- "scripts": ["background.js"],
- "persistent": false
- },
- "browser_action": {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement