v8/tools/link_clicker.extension/manifest.json
Camillo Bruni 2bd86a074e [tools] Add link_click chrome extension
This extension imitates user-interaction on a page by randomly clicking on
links matching a given regexp pattern.

Change-Id: I210bebf36ce6e3a3c785953010ce21528093d1af
NOTRY=true

Change-Id: I210bebf36ce6e3a3c785953010ce21528093d1af
Reviewed-on: https://chromium-review.googlesource.com/500247
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#45201}
2017-05-09 15:25:21 +00:00

22 lines
540 B
JSON

{
"name": "A browser action with a popup that automatically clicks links matching a regexp",
"description": "Follow links",
"version": "1.0",
"permissions": [
"tabs", "http://*/*", "https://*/*"
],
"background": { "scripts": ["background.js"] },
"browser_action": {
"default_title": "Follow links.",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content.js"]
}
],
"manifest_version": 2
}