Inspect and view changes in OxfordDict to Copiable Text 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": "OxfordDict to Copiable Text",
"version": "1.1",
"description": "Copies the definition from the Oxford Advanced Learner's Dictionary in the format of my anki card to the clipboard so I can paste it when I create a new card.",
"icons": {
"48": "icons/icon48.png"
},
"browser_action": {
"default_popup": "popup/popup.html",
"browser_style": true
},
"permissions": [
"storage",
"clipboardWrite"
],
"background": {
"scripts": [
"script.js"
]
},
"content_scripts": [
{
"matches": [
"*://www.oxfordlearnersdictionaries.com/*"
],
"js": [
"script.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{cdd54368-ecb9-43b8-835a-b13b54c41d8f}"
}
}
}