FragmentQR

QR codes that can highlight any text in yellow when scanned.

Τι είναι το FragmentQR;

Το FragmentQR είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://y330.github.io/FragmentQR, και η κύρια λειτουργία του είναι "QR codes that can highlight any text in yellow when scanned.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης FragmentQR

Λήψη αρχείων επέκτασης FragmentQR σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        QR codes and links that highlight specific text on a webpage in yellow when opened.

Made by Yonah Aviv

 changelog 1.8
- redesign
- history is initialized and will be activated next micro release (1.8.1)
- added micro interactions to download button and ripple effect to other buttons
- paste button  will now  auto generate a text fragment link using whatever text you entered in the textarea(experimental)
This is a  beta release.

FragmentQR lets you share more relevant content, in 2 ways, each with different applications:

1) The link. 
Relevant citations - Academia
• In your citations on your paper, you can highlight quotes you used from websites when your professor or colleagues click on the citation link. 
• Minimize the time that is wasted from scrambling through other websites to find your citations and your professor may now spend more time on your actual paper.
Relevant sharing - Social Media/Messaging
• Share just the relevant parts of articles and posts by copying a text fragment link and make life easier.
----------------
2) The QR code. 
FragmentQR codes
• What it is: QR codes that direct your customers/audience to contextual portions of text on any website
• Examples: 
-Product marketing: Simple and intuitive instruction manual that has a Fragment QR code for each instruction/guidelines that link to the electronic manual and highlights the instructing in yellow.
-Engage your audience by integrating fragment QR codes in your PowerPoint presentations.



Other Features
- Automatically generate QR for current tab
- Save QR as a PNG
- Keyboard shortcuts
- Edit QR code in popup
- Functional utility buttons
- QR code can be made larger
- Clean and responsive design


Steps to use:
1. Select text
2. Right click and select "Copy text fragment. Next: Open Popup"
3. Click the extension toolbar icon to open the popup 
4. Press the paste button at the bottom left of the toolbar popup

⌨ Shortcuts:
🟨 • Copy text fragment from selected text: Ctrl/⌘ + ⇑ + L
📖 • Open QR popup: Ctrl/⌘ + Q
📋 • Then press the paste button and scan.


Compatibility
 Android: Google Chrome 85, Android WebView 81, Samsung Internet, (could be more)
 Mac/Win/Linux: Microsoft Edge 83, Chrome 80, Opera 68
 IOS: Works

Check out some similar extensions [made by other developers]:
1. Link to text fragment
2. STTF Url Generator



 

FragmentQR is 100% free with no ads!

Follow us on instagram:
@fragmentqr

⚒  You can view this projects source code on Github:
https://bit.ly/FQRrepository

Privacy policy
As the sdevelopewrs of FragmentQR, the browser extension, does not collect any personal identification information of users for personalization, analytics, tracking, or profit. 

This project is licensed under the terms of the MIT license.
Copyright © 2021 Yonah Aviv                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FragmentQR FragmentQR
ID cabodnfakameckfbbgkciiifempglloj
Επίσημο URL https://chromewebstore.google.com/detail/fragmentqr/cabodnfakameckfbbgkciiifempglloj
Περιγραφή QR codes that can highlight any text in yellow when scanned.
Μέγεθος Αρχείου 680 KB
Αριθμός Εγκαταστάσεων 42
Τρέχουσα Έκδοση 1.8.1
Τελευταία Ενημέρωση 2021-05-30
Ημερομηνία Δημοσίευσης 2020-09-03
Αξιολόγηση 4.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://y330.github.io/FragmentQR
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://y330.github.io/FragmentQR/
Διεύθυνση URL της Σελίδας Βοήθειας https://chrome.google.com/webstore/detail/fragmentqr/cabodnfakameckfbbgkciiifempglloj/support
Υποστηριζόμενες Γλώσσες en,iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Yonah Aviv",
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background_script.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/icon-16.png",
            "32": "img\/icon-32.png",
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png",
            "512": "img\/icon-512.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_open_popup__"
    },
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_open_popup__",
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Alt+Q"
            }
        },
        "copy_link": {
            "description": "__MSG_copy_link__",
            "suggested_key": {
                "default": "Alt+Shift+L",
                "mac": "Alt+Shift+L"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/content_script.js"
            ],
            "matches": [
                "https:\/\/*\/*, http:\/\/*\/*"
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png",
        "512": "img\/icon-512.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "80",
    "name": "__MSG_extension_name__",
    "offline_enabled": true,
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "short_name": "__MSG_short_name__",
    "version": "1.8.1"
}