Inspect and view changes in F_U Paste Me 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": 3,
"name": "F_U Paste Me",
"version": "0.92.1",
"description": "Paste wherever the f_ck you want",
"author": "Haroun B.",
"icons": {
"16": "./icons/f_u-paste-me-16.png",
"32": "./icons/f_u-paste-me-32.png",
"48": "./icons/f_u-paste-me-48.png",
"128": "./icons/f_u-paste-me-128.png"
},
"permissions": [
"clipboardRead",
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-script.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "./icons/f_u-paste-me-16.png",
"32": "./icons/f_u-paste-me-32.png",
"48": "./icons/f_u-paste-me-48.png",
"128": "./icons/f_u-paste-me-128.png"
}
}
}