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.

26 lines
618 B

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. {
  2. "name": "9GAG lilik mod",
  3. "description": "Mod to make 9gag a better place",
  4. "version": "1.0",
  5. "permissions" : [
  6. "activeTab",
  7. "contextMenus",
  8. "clipboardWrite"
  9. ],
  10. "content_scripts": [ {
  11. "js": [ "jquery-2.1.4.min.js", "main.js" ],
  12. "matches": ["http://9gag.com/*", "https://9gag.com/*"],
  13. "css": ["style.css"]
  14. }],
  15. "background": {
  16. "persistent": false,
  17. "scripts": ["background.js"]
  18. },
  19. "web_accessible_resources": ["assets/logo100.png"],
  20. "icons": { "16": "assets/logoDark16.png",
  21. "48": "assets/logoDark48.png",
  22. "128": "assets/logoDark128.png" },
  23. "manifest_version": 2
  24. }