Inspect and view changes in Clicker 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Clicker",
"action": {},
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "laimis.milasius@gmail.com"
}
},
"version": "0.2.9.75",
"description": "It's about click. It's about you time. It's about you profile. Use it.",
"icons": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"permissions": [
"declarativeNetRequest"
],
"background": {
"service_worker": "./serviceworker.js"
},
"content_scripts": [
{
"matches": [
"https://www.linkedin.com/*"
],
"js": [
"click.js"
]
},
{
"matches": [
"https://clicker.lt/*",
"https://www.linkedin.com/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/active/icon_48-on.png"
],
"matches": [
"https://www.linkedin.com/*"
],
"as": "image"
},
{
"resources": [
"images/active/icon_48-off.png"
],
"matches": [
"https://www.linkedin.com/*"
],
"as": "image"
}
]
}