Inspect and view changes in DoneLog 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": "DoneLog",
"description": "Seamlessly manage tasks, sync with Google Sheets, get inspired with motivational quotes. Click or Ctrl+Shift+L for instant access",
"version": "0.0.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"128": "./icons/icon128.png"
}
},
"icons": {
"32": "./icons/icon32.png",
"48": "./icons/icon48.png",
"128": "./icons/icon128.png"
},
"permissions": [
"activeTab",
"identity",
"contextMenus",
"commands"
],
"oauth2": {
"client_id": "424944760759-lhrd66345aj3cf1dqjgg76g5v92fsvbu.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/spreadsheets"
]
},
"content_scripts": [
{
"matches": [
"https://*/todos.html"
],
"js": [
"todos.js",
"spreadsheet.js"
]
}
],
"commands": {
"openDoneLog": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Open DoneLog"
}
},
"author": "Nasim",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiosyYlF6/CUZvGQT3x76Qt1ZJTmn09PaV++1L3ITyKmkLqgi/PbjsqDZk0a2yVJwc7DdGFmr+Wxr38liHK944MmE8Rm1RItBxXxlIJOk25MHEX8Ueqo6hUcQeAHzNpf2PHkPUmbQl+XdA1gVxoUHG1I2OVXRVrrjqMdAxQNcndxO/umMXxLBl9rwxFoC2S3LVkz6jOXDF1/G7qBwpoC6+RZM8gmJHm//Qti6gsR8NqXmnaX6VtRj60jq+OTnXwdB7rI53WblyZWLh2B9pJ1jsQVkzBYgXnPiqAQ/kNOVj30mfa3oF58bK14HoDblQglV6iIuPCfqRAcfoFY9Bl0VIwIDAQAB"
}