Inspect and view changes in Copy page title and url 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,
"name": "Copy page title and url",
"short_name": "Copy title and url",
"description": "Add a context menu item to copy page title (or selected text) and url to clipboard.",
"version": "1.3",
"homepage_url": "https://github.com/marekjedlinski/webext-copy-title-url",
"author": "Marek JedliĆski",
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icons/copy_title_and_url.png"
},
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite"
],
"applications": {
"gecko": {
"id": "copy_title_and_url@tranglos.com",
"strict_min_version": "57.0"
}
}
}