Inspect and view changes in Create Link 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
{
"manifest_version": 2,
"name": "Create Link",
"author": "Mike Francis",
"version": "1.4",
"description": "Right click the page to copy the page title and address to create a link for pasting into a rich text editor.",
"permissions": [
"*://*/*",
"activeTab",
"contextMenus",
"clipboardWrite"
],
"icons": {
"16": "images/create-link16.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/main.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": {
"20": "images/create-link20.png",
"40": "images/create-link40.png"
},
"default_popup": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}