Doculife
Extend Doculife functionality to the browser
Doculifeとは何ですか?
DoculifeはDoculifeによって開発されたChromeの拡張機能で、その主な機能は「Extend Doculife functionality to the browser」です。
拡張機能のスクリーンショット
Doculife拡張機能のCRXファイルをダウンロード
Doculife拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Doculife browser extension helps you bookmark links, save videos & photos within your Doculife account. 拡張機能の基本情報
| 名前 | |
| ID | kncpecieidnifieilafkejgkkbfohldf |
| 公式URL | https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf |
| 説明 | Extend Doculife functionality to the browser |
| ファイルサイズ | 81.92 KB |
| インストール数 | 72 |
| 現在のバージョン | 1.5 |
| 最終更新日 | 2020-11-11 |
| 公開日 | 2020-03-25 |
| 評価 | 5.00/5 合計 13 レビュー |
| 開発者 | Doculife |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.doculife.com/ |
| プライバシーポリシーページのURL | https://www.doculife.com/privacy-policy |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Doculife",
"version": "1.5",
"author": "Doculife",
"description": "Extend Doculife functionality to the browser",
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"browser_action": {
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"default_popup": "popup.html",
"default_title": "Doculife"
},
"permissions": [
"activeTab",
"contextMenus",
"storage",
"notifications",
"https:\/\/*.mydoculife.com\/*",
"https:\/\/mydoculife.com\/*"
],
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/mydoculife.com\/*",
"https:\/\/dev.mydoculife.com\/*"
],
"js": [
"contentScriptsAPIBridge.js",
"browser-polyfill.js",
"content.js"
],
"all_frames": true
}
]
} | |