11cb0ef41Sopenharmony_ci{
21cb0ef41Sopenharmony_ci  "name": "A browser action with a popup that automatically clicks links matching a regexp",
31cb0ef41Sopenharmony_ci  "description": "Follow links",
41cb0ef41Sopenharmony_ci  "version": "1.0",
51cb0ef41Sopenharmony_ci  "permissions": [
61cb0ef41Sopenharmony_ci    "tabs", "http://*/*", "https://*/*"
71cb0ef41Sopenharmony_ci  ],
81cb0ef41Sopenharmony_ci  "background": { "scripts": ["background.js"] },
91cb0ef41Sopenharmony_ci  "browser_action": {
101cb0ef41Sopenharmony_ci      "default_title": "Follow links.",
111cb0ef41Sopenharmony_ci      "default_icon": "icon.png",
121cb0ef41Sopenharmony_ci      "default_popup": "popup.html"
131cb0ef41Sopenharmony_ci  },
141cb0ef41Sopenharmony_ci  "content_scripts": [
151cb0ef41Sopenharmony_ci    {
161cb0ef41Sopenharmony_ci      "matches": ["http://*/*", "https://*/*"],
171cb0ef41Sopenharmony_ci      "js": ["content.js"]
181cb0ef41Sopenharmony_ci    }
191cb0ef41Sopenharmony_ci  ],
201cb0ef41Sopenharmony_ci  "manifest_version": 2
211cb0ef41Sopenharmony_ci}
22