My Atoms
Sync your highlights on Kindle & Medium to My Atoms, select text on any web page and send to My Atoms
什麼是My Atoms?
My Atoms是由My Atoms開發的Chrome擴展程式,該擴展的主要功能是“Sync your highlights on Kindle & Medium to My Atoms, select text on any web page and send to My Atoms”。
擴展截圖
下載My Atoms擴展crx文件
下載My Atoms擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
With this extension, you can:
- Select text on any web page and send it to My Atoms
- Sync Kindle highlight/notes to My Atoms
- Sync Medium highlights to My Atoms 擴展基本資訊
| 名稱 | |
| ID | gddpfdjbnkcicmmcapdcbeeodgljekml |
| 官方網址 | https://chromewebstore.google.com/detail/my-atoms/gddpfdjbnkcicmmcapdcbeeodgljekml |
| 簡介 | Sync your highlights on Kindle & Medium to My Atoms, select text on any web page and send to My Atoms |
| 檔案大小 | 124 KB |
| 安裝次數 | 394 |
| 目前版本 | 0.0.5 |
| 更新時間 | 2022-10-06 |
| 上架時間 | 2021-12-24 |
| 評分 | 3.50/5 共 2 次評分 |
| 開發者 | My Atoms |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://myatoms.io |
| 說明頁面URL | https://feedback.myatoms.io/ |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "My Atoms",
"version": "0.0.5",
"icons": {
"16": "assets\/icons\/logo-16.png",
"32": "assets\/icons\/logo-32.png",
"48": "assets\/icons\/logo-48.png",
"128": "assets\/icons\/logo-128.png"
},
"description": "Sync your highlights on Kindle & Medium to My Atoms, select text on any web page and send to My Atoms",
"homepage_url": "https:\/\/myatoms.io",
"short_name": "My Atoms",
"permissions": [
"notifications",
"contextMenus",
"activeTab",
"http:\/\/localhost:9000\/*",
"https:\/\/beta.myatoms.io\/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"author": "William",
"minimum_chrome_version": "49",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/icons\/logo-16.png",
"32": "assets\/icons\/logo-32.png",
"48": "assets\/icons\/logo-48.png",
"128": "assets\/icons\/logo-128.png"
},
"default_title": "My Atoms",
"chrome_style": false
},
"background": {
"scripts": [
"js\/background.bundle.js"
],
"persistent": false
},
"externally_connectable": {
"matches": [
"https:\/\/*.myatoms.io\/*",
"http:\/\/localhost:9000\/*"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/read.amazon.com\/notebook*",
"https:\/\/medium.com\/me\/list\/highlights*"
],
"js": [
"js\/contentScript.bundle.js"
]
}
]
} | |