Online research can be extremely slow, cumbersome, and messy. reKnowledge’s Digital Investigative Board streamlines complex…
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "reKnowledge DIB",
"version": "1.2.15",
"manifest_version": 2,
"description": "",
"permissions": [
"storage",
"declarativeContent",
"activeTab",
"proxy",
"identity"
],
"background": {
"scripts": [
"background/background.js"
]
},
"browser_action": {
"default_popup": "popup/index.html",
"default_icon": {
"16": "images/reKnowledge16.png",
"32": "images/reKnowledge32.png",
"48": "images/reKnowledge48.png",
"128": "images/reKnowledge128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"js": [
"content-scripts/js/webcomponents-sd-ce.js",
"content-scripts/content-scripts.js"
]
}
],
"content_security_policy": "script-src 'self' blob:; object-src 'self'",
"icons": {
"16": "images/reKnowledge16.png",
"32": "images/reKnowledge32.png",
"48": "images/reKnowledge48.png",
"128": "images/reKnowledge128.png"
}
}