A browser extension that adds a link to a bot's Botwiki entry on relevant pages.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Botwiki Browser Extension",
"version": "1.1.8",
"description": "A browser extension that adds a link to a bot's Botwiki entry on relevant pages.",
"homepage_url": "https://botwiki.org/projects/botwiki-browser-extension/",
"manifest_version": 2,
"minimum_chrome_version": "74",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"<all_urls>"
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/content.js"
],
"css": [
"styles/styles.css"
]
}
],
"web_accessible_resources": [
"scripts/main.js",
"scripts/modules/addBotwikiLink.js",
"scripts/modules/findBot.js",
"scripts/modules/getBotInfo.js",
"scripts/modules/ready.js",
"data/*.json"
],
"browser_specific_settings": {
"gecko": {
"id": "{a8d04e45-d412-4c89-9a9b-f8e47976abfc}"
}
}
}