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 |
| 公式URL | 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 |
| Eメール | [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"
]
}
]
} | |