Copy Marker

Copy shareable URL with highlighted selection

Vad är Copy Marker?

Copy Marker är en Chrome-tillägg utvecklad av https://roadmap.sh, och dess huvudfunktion är "Copy shareable URL with highlighted selection".

Tilläggsskärmbilder

screenshot

Ladda ner Copy Marker-förlängningens CRX-fil

Ladda ner Copy Marker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Copy Marker allows you to select some text on page, right click and "Copy Marker URL" which will copy the URL with your selection information. You can share it with someone and when they open that URL it will automatically highlight the selection you made and scroll the user to that section of the page.                    

Grundläggande Information om Tillägg

Namn Copy Marker Copy Marker
ID jlbhiiaglonlmddaenlicebafcmpcoob
Officiell webbadress https://chromewebstore.google.com/detail/copy-marker/jlbhiiaglonlmddaenlicebafcmpcoob
Beskrivning Copy shareable URL with highlighted selection
Filstorlek 12.03 KB
Antal Installationer 44
Aktuell Version 1.0
Senast Uppdaterad 2020-06-13
Publiceringsdatum 2020-06-12
Utvecklare https://roadmap.sh
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/kamranahmedse/copy-marker
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Marker",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Copy shareable URL with highlighted selection",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "\/icons\/icon16.png",
        "28": "\/icons\/icon28.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Copy Marker",
        "default_icon": "\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "script.js"
        ]
    }
}