Inspect and view changes in Text Input Hold 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",
"manifest_version": 2,
"version": "1.0",
"name": "Text Input Hold",
"description": "Text Input Hold",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon16.png",
"default_popup": "html/popup.html"
},
"background": {
"scripts": [
"js/jquery-3.6.0.min.js",
"js/background.js"
],
"persistent": false
},
"permissions": [
"background",
"clipboardWrite",
"storage"
],
"content_scripts": [
{
"matches": [
"http://*/",
"https://*/",
"http://*/*",
"https://*/*"
],
"js": [
"js/jquery-3.6.0.min.js",
"js/content.js"
]
}
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}