Chrome extension to make the / key find in page
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.

18 lines
345 B

12 years ago
  1. {
  2. "name": "slashfind",
  3. "version": "1.0",
  4. "description": "Find in page with the slash key.",
  5. "icons": {
  6. "16": "icon16.png",
  7. "48": "icon48.png",
  8. "128": "icon128.png"
  9. },
  10. "permissions": ["tabs"],
  11. "content_scripts": [
  12. {
  13. "matches": ["<all_urls>"],
  14. "css": ["search.css"],
  15. "js": ["search.js"]
  16. }
  17. ]
  18. }