A LILiK chrome extension for the well known 9gag website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
449 B

{
"manifest_version": 2,
"name": "Getting started example",
"description": "This extension shows a Google Image search result for the current page",
"version": "1.0",
"permissions" : [
"activeTab",
"contextMenus",
"clipboardWrite"
],
"content_scripts": [ {
"js": [ "jquery-2.1.4.min.js", "main.js" ],
"matches": ["http://9gag.com/*", "https://9gag.com/*"]
}],
"background": {
"persistent": false,
"scripts": ["gif.js"]
}
}