Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Fast Copy as Plain Text",
"author": "NightStranger",
"description": "\u26a1\ufe0f Simple Extension that helps to copy as plain text using Ctrl + C or button in context menu \u26a1\ufe0f",
"version": "1.2",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"src\/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src\/background.js"
},
"permissions": [
"storage",
"contextMenus",
"clipboardWrite",
"tabs",
"scripting"
],
"host_permissions": [
"*:\/\/*\/*"
],
"icons": {
"16": "icons\/logo_16.png",
"64": "icons\/logo_64.png",
"128": "icons\/logo_128.png"
},
"action": {
"default_icon": "icons\/logo_128.png",
"default_popup": "src\/popup.html"
},
"commands": {
"clearText": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Clear formatting from clipboard"
}
}
}