Inspect and view changes in Let's Get Personal 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": "Let's Get Personal",
"version": "0.5",
"description": "A simple Chrome Extension to move the 'Personal Life' section on Wikipedia pages up to the top.",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"24": "images/icon24.png",
"32": "images/icon32.png"
},
"default_title": "Let's Get Personal",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"https://*.wikipedia.org/*",
"https://*.wikipedia.org/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "{5bcd3267-3015-4eba-a8e9-f6c539ec5069}"
}
}
}