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.

28 lines
692 B

9 years ago
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.1",
  5. "options_page":"preferences/preferences.html",
  6. "permissions" : [
  7. "activeTab",
  8. "contextMenus",
  9. "clipboardWrite",
  10. "storage"
  11. ],
  12. "content_scripts": [ {
  13. "js": [ "jquery-2.1.4.min.js", "main.js" ],
  14. "matches": ["http://9gag.com/*", "https://9gag.com/*"],
  15. "css": ["style.css"]
  16. }],
  17. "background": {
  18. "persistent": false,
  19. "scripts": ["background.js"]
  20. },
  21. "web_accessible_resources": ["assets/logo100.png", "style.css"],
  22. "icons": { "16": "assets/logoDark16.png",
  23. "48": "assets/logoDark48.png",
  24. "128": "assets/logoDark128.png" },
  25. "manifest_version": 2
  26. }