Inspect and view changes in Dump Trump 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": "Dump Trump",
"version": "0.1.1resigned1",
"description": "Naming Donald Trump for what he actually is.",
"author": "Heather Akers-Healy",
"browser_action": {
"default_title": "Use this to open the popup",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"tabs",
"activeTab",
"<all_urls>",
"*://*/*"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"replace.js"
],
"run_at": "document_end"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{a5f51bff-8451-4eae-9abc-434f2bbed619}"
}
}
}