Inspect and view changes in Objectivity source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Objectivity",
"short_name": "objectivity",
"description": "Estimates the objectivity of text using an ensemble machine learning approach.",
"version": "0.7resigned1",
"author": "Glen Baker <iepathos@gmail.com>",
"icons": {
"16": "icon16.png",
"19": "icon19.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon19.png",
"default_popup": "popup.html",
"default_title": "Objectivity"
},
"background": {
"scripts": [
"jquery.min.js",
"background.js"
]
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"popup.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"permissions": [
"activeTab",
"contextMenus"
],
"browser_specific_settings": {
"gecko": {
"id": "{2baab1f1-f80b-44bf-9c91-f3aebb2e1add}"
}
}
}