Created
July 17, 2018 21:18
-
-
Save royharoush/790e7bbb677c9bb9c0caedaae0dbe27d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"background": { | |
"scripts": [ "vendor/jquery-1.7.2_min.js", "vendor/encoder.js", "background.js" ] | |
}, | |
"browser_action": { | |
"default_icon": "img/umbrella_19.png", | |
"default_popup": "popup.html", | |
"default_title": "Copy URLs to clipboard" | |
}, | |
"commands": { | |
"copy": { | |
"description": "Copy", | |
"suggested_key": { | |
"default": "Alt+C" | |
} | |
}, | |
"paste": { | |
"description": "Paste", | |
"suggested_key": { | |
"default": "Alt+V" | |
} | |
} | |
}, | |
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'", | |
"description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.", | |
"icons": { | |
"128": "img/umbrella_128.png" | |
}, | |
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC8MYHT2IVU3Qt7cTRYbvlxW/Gu+i9Igkq9lrr9tGiHDam4ETDzrqxagP5wrfckJYE2BdJLh+U8ItVOl/+TkQHeZnDUmrohVVfyfVgcGZv5pWPJDxqWh89ZfiLHTHYJlettU6KoWzdAd7ay2c1Bs0Mwj6lbgp2jUY279ZFXGqUttwIDAQAB", | |
"manifest_version": 2, | |
"name": "Copy All Urls", | |
"options_page": "options.html", | |
"permissions": [ "tabs", "clipboardRead", "clipboardWrite", "notifications" ], | |
"update_url": "https://clients2.google.com/service/update2/crx", | |
"version": "2.10" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
change line 33 to match the line in this file.