Inspect and view changes in InCognito 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
{
"name": "InCognito",
"version": "1.0.4",
"manifest_version": 2,
"description": "Browse LinkedIn Privately. Instantly view profiles anonymously with the flip of a switch in your navigation bar.",
"homepage_url": "http://trever.com/incognito",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": true
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"icons/*.png",
"icons/*.jpg",
"icons/*.svg"
],
"content_scripts": [
{
"matches": [
"https://*.linkedin.com/*"
],
"css": [
"src/inject/inject.css"
]
},
{
"matches": [
"https://*.linkedin.com/*"
],
"js": [
"src/inject/inject.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}