Clipboard History
Extension to save history of copied text in browser
Hvad er Clipboard History?
Clipboard History er en Chrome-udvidelse udviklet af Saif As, og dens hovedfunktion er "Extension to save history of copied text in browser".
Udvidelsesskærmbilleder
Download Clipboard History-udvidelses-CRX-fil
Download Clipboard History-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
it saves each item copied on the clipboard allowing access to any of those items at any time later.
Features:
● Hovering on one item will show all the text content in the tooltip
● Clicking on one item will copy the text to clipboard
● Searching for text will search all the items for matching text
● Clicking on the X button near each item will delete the item from the list
● Clicking on clear saved text will clear all the saved text
Isn't working as expected?
Please send me mail to: [email protected] Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mhokbaagmjlbflncohdhinppihlojpco |
| Officiel URL | https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco |
| Beskrivelse | Extension to save history of copied text in browser |
| Filstørrelse | 177 KB |
| Antal Installationer | 1,677 |
| Nuværende Version | 1.5 |
| Senest Opdateret | 2021-11-01 |
| Udgivelsesdato | 2020-07-15 |
| Bedømmelse | 2.33/5 Samlet 3 Bedømmelser |
| Udvikler | Saif As |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Clipboard History",
"version": "1.5",
"description": "Extension to save history of copied text in browser",
"permissions": [
"storage"
],
"icons": {
"128": "icons\/icon128.png",
"256": "icons\/icon256.png",
"512": "icons\/icon512.png"
},
"action": {
"default_icon": "icons\/icon512.png",
"default_popup": "src\/browser_actions\/popup.html",
"default_title": "Clipboard History"
},
"background": {
"service_worker": "src\/bg\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/browser_actions\/content.js"
]
}
]
} | |