CopyText - Copy Text From Videos for FREE
Copies text from YouTube videos in one click.
Vad är CopyText - Copy Text From Videos for FREE?
CopyText - Copy Text From Videos for FREE är en Chrome-tillägg utvecklad av jatinpal4014, och dess huvudfunktion är "Copies text from YouTube videos in one click.".
Tilläggsskärmbilder
Ladda ner CopyText - Copy Text From Videos for FREE-förlängningens CRX-fil
Ladda ner CopyText - Copy Text From Videos for FREE-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Adds a button on the youtube page that lets you Easily Copy Text From Youtube Videos on user click. Grundläggande Information om Tillägg
| Namn | |
| ID | ocengibfhpjdknglagfkepdhnkmgifdm |
| Officiell webbadress | https://chromewebstore.google.com/detail/copytext-copy-text-from-v/ocengibfhpjdknglagfkepdhnkmgifdm |
| Beskrivning | Copies text from YouTube videos in one click. |
| Filstorlek | 88.38 KB |
| Antal Installationer | 136 |
| Aktuell Version | 1.121 |
| Senast Uppdaterad | 2022-10-31 |
| Publiceringsdatum | 2022-10-30 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | jatinpal4014 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CopyText - Copy Text From Videos for FREE",
"description": "Copies text from YouTube videos in one click.",
"version": "1.121",
"icons": {
"128": "96.png"
},
"action": {
"default_title": "CopyText - Copy Text From Videos for FREE",
"default_popup": "home.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
"test.css"
],
"js": [
"home.js"
]
}
],
"background": {
"service_worker": "back.js"
},
"permissions": [
"clipboardWrite"
]
} | |