Doculife
Extend Doculife functionality to the browser
Wat is Doculife?
Doculife is een Chrome-extensie ontwikkeld door Doculife, en de belangrijkste functie is "Extend Doculife functionality to the browser".
Extensie Screenshots
Download het CRX-bestand van de extensie Doculife
Download Doculife-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The Doculife browser extension helps you bookmark links, save videos & photos within your Doculife account.
Basisinformatie over de Extensie
Naam | Doculife |
ID | kncpecieidnifieilafkejgkkbfohldf |
Officiële URL | https://chromewebstore.google.com/detail/doculife/kncpecieidnifieilafkejgkkbfohldf |
Beschrijving | Extend Doculife functionality to the browser |
Bestandsgrootte | 81.92 KB |
Aantal Installaties | 72 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2020-11-11 |
Publicatiedatum | 2020-03-25 |
Beoordeling | 5.00/5 Totaal 13 Beoordelingen |
Ontwikkelaar | Doculife |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.doculife.com/ |
URL van de Privacybeleid Pagina | https://www.doculife.com/privacy-policy |
Ondersteunde Talen | 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 } ] } |