FastFind

FastFind helps you track multiple pieces of text!

Vad är FastFind?

FastFind är en Chrome-tillägg utvecklad av STK Dev, och dess huvudfunktion är "FastFind helps you track multiple pieces of text!".

Tilläggsskärmbilder

screenshot

Ladda ner FastFind-förlängningens CRX-fil

Ladda ner FastFind-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

                        FastFind helps you easily track multiple pieces of text!
We've included keyboard shortcuts to help you navigate through all selections.

Give it a try!

Github: https://github.com/samuthekid/fastfind                    

Grundläggande Information om Tillägg

Namn FastFind FastFind
ID pacanidajfeoodnkjnlhjmfnijaeolge
Officiell webbadress https://chromewebstore.google.com/detail/fastfind/pacanidajfeoodnkjnlhjmfnijaeolge
Beskrivning FastFind helps you track multiple pieces of text!
Filstorlek 41.12 KB
Antal Installationer 22
Aktuell Version 0.9.8.6
Senast Uppdaterad 2020-03-13
Publiceringsdatum 2020-03-12
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare STK Dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/samuthekid/fastfind
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FastFind",
    "short_name": "FF",
    "description": "FastFind helps you track multiple pieces of text!",
    "version": "0.9.8.6",
    "author": "Samuel Nunes",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "FastFind Settings"
    },
    "content_scripts": [
        {
            "persistent": false,
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "settings\/index.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "fast-find.js",
        "assets\/repeat.png",
        "assets\/pin.png"
    ],
    "minimum_chrome_version": "70",
    "manifest_version": 2
}