ExactNote

ExactNote is designed to create, view, and organize annotations on web pages and pdf documents.

Qu'est-ce que ExactNote ?

ExactNote est une extension Chrome développée par https://exactnote.com, et sa fonction principale est "ExactNote is designed to create, view, and organize annotations on web pages and pdf documents.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ExactNote

Téléchargez les fichiers d'extension ExactNote au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ExactNote is designed to create, view, and organize annotations on web pages and pdf documents. After text is highlighted, short notes can be added. Afterwards, these notes can be viewed by anyone on that web page who has access to the created annotation. Furthermore, these annotations can be organized and shared from the ExactNote website.                    

Informations de Base sur l'Extension

Nom ExactNote ExactNote
ID nkgahlpojenkmckneoemmioojaagdajj
URL Officiel https://chromewebstore.google.com/detail/exactnote/nkgahlpojenkmckneoemmioojaagdajj
Description ExactNote is designed to create, view, and organize annotations on web pages and pdf documents.
Taille du Fichier 4.93 MB
Nombre d'Installations 11
Version Actuelle 1.6.0
Dernière Mise à Jour 2023-12-09
Date de Publication 2020-07-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://exactnote.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.exactnote.com
URL de la Page d'Aide https://www.exactnote.com/faq
URL de la Page de Politique de Confidentialité https://www.exactnote.com/policy/privacy-policy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ExactNote",
    "version": "1.6.0",
    "description": "ExactNote is designed to create, view, and organize annotations on web pages and pdf documents.",
    "manifest_version": 3,
    "permissions": [
        "geolocation",
        "activeTab",
        "tabs",
        "storage",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "assets\/images\/icon-16x16.png",
        "24": "assets\/images\/icon-24x24.png",
        "32": "assets\/images\/icon-32x32.png",
        "48": "assets\/images\/icon-48x48.png",
        "64": "assets\/images\/icon-64x64.png",
        "128": "assets\/images\/icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js",
                "runtime.js",
                "vendor.js"
            ],
            "css": [
                "assets\/styles\/content.css"
            ]
        }
    ],
    "background": {
        "service_worker": "serviceworker.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/images\/icon-16x16.png",
            "24": "assets\/images\/icon-24x24.png",
            "32": "assets\/images\/icon-32x32.png",
            "48": "assets\/images\/icon-48x48.png",
            "64": "assets\/images\/icon-64x64.png",
            "128": "assets\/images\/icon-128x128.png"
        },
        "default_title": "ExactNote",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/*.png",
                "*.html",
                "index.html?page=comments",
                "index.html?page=input",
                "index.html?page=create-notepad",
                "index.html?page=sidebar",
                "index.html?page=privacy-prompt",
                "index.html?page=web-picture-annotation"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}