Inspect and view changes in 購書助手 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": "購書助手",
"description": "This is an extension that can copy book information from BOOKTW and AmazonCN",
"version": "2.1",
"author": "Marble Kuok",
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://www.books.com.tw/*",
"*://www.amazon.cn/*",
"*://www.amazon.com/*",
"*://item.jd.com/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "icons/book_info.png",
"48": "icons/book_info.png",
"128": "icons/book_info.png"
},
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite",
"notifications"
]
}