Inspect and view changes in Tweets2PDF - Convert All Tweets to One PDF/EPUB 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": "__MSG_appName__",
"version": "2.5.5",
"description": "__MSG_appDesc__",
"manifest_version": 3,
"author": "XTCodeTech",
"background": {
"service_worker": "background.js"
},
"permissions": [
"identity",
"identity.email",
"storage",
"webRequest",
"tabs"
],
"host_permissions": [
"https://*.twitter.com/*",
"https://*.x.com/*",
"https://*.twimg.com/*"
],
"content_scripts": [
{
"matches": [
"https://*.twitter.com/*",
"http://*.twitter.com/*",
"https://*.x.com/*",
"http://*.x.com/*"
],
"js": [
"js/bootstrap.min.js",
"js/csvparse.js",
"js/indexedDbUtil.js",
"js/content.js"
],
"css": [
"css/bootstrap.min.css",
"css/style.css"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "__MSG_appName__",
"default_popup": "/pages/popup.html",
"default_icon": {
"16": "/imgs/icon16.png",
"32": "/imgs/icon32.png"
}
},
"icons": {
"16": "/imgs/icon16.png",
"32": "/imgs/icon32.png",
"48": "/imgs/icon48.png",
"128": "/imgs/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"css/bootstrap.min.css"
],
"matches": [
"https://*/*"
]
}
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlHA9dhKwhKnqF0Zt9RYUIMD06Mid95+jn/bfg+SWUx6HY6Ti3PYe9cSt/UqG2NtAZLYbxj0LY+uI3XFbMJ3owBwqDtSr16A3Y5UAwk9GFsxMUtvxUq1kfrbCYaOwibe++Jib5NuSmrPzchSl2ojFci9jio6cCDCBbQGa1x/IWVrK2WiYIWmLhOW+RP9w//o9Kz0AvBUrcz/SVaoAv06LhL+qqAcXETNu0ilO7u0cdFA1beNSIuhh21Jkjn3zMh5SekrjF79OC4JrHLeTvK4HOT8o1u3c3uj5pnyoAJDnHIAiujDZIEKW5jlzzHxlXxMREd906wI+IJwg+pYvga3UmQIDAQAB",
"oauth2": {
"client_id": "206561442920-18cunbs2fvnmriurg7erdc8e864ehi0l.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"default_locale": "en"
}