Table Scrape
Scrape from tables.
Vad är Table Scrape?
Table Scrape är en Chrome-tillägg utvecklad av https://claycodes.org, och dess huvudfunktion är "Scrape from tables.".
Tilläggsskärmbilder
Ladda ner Table Scrape-förlängningens CRX-fil
Ladda ner Table Scrape-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
                        Scrape data to a CSV from paginated tables using a button labeled with "next". 
Github source https://github.com/GoogleChromeLabs/table-scrape.git                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | ocglnchcpdjocppfepejjddgieoodaep | 
| Officiell webbadress | https://chromewebstore.google.com/detail/table-scrape/ocglnchcpdjocppfepejjddgieoodaep | 
| Beskrivning | Scrape from tables. | 
| Filstorlek | 44.66 KB | 
| Antal Installationer | 169 | 
| Aktuell Version | 0.0.2 | 
| Senast Uppdaterad | 2023-04-14 | 
| Publiceringsdatum | 2023-04-05 | 
| Utvecklare | https://claycodes.org | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://www.claycodes.org/google-add-onsextensions/table-scrape | 
| Hjälpsida URL | https://www.claycodes.org/google-add-onsextensions/table-scrape | 
| URL till Sekretesspolicy Sidan | https://www.claycodes.org/home/privacy-policy | 
| Stödda Språk | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table Scrape",
    "version": "0.0.2",
    "author": "Clay Smith",
    "short_name": "Table Scrape",
    "default_locale": "en",
    "description": "Scrape from tables.",
    "icons": {
        "19": "images\/19.png",
        "32": "images\/32.png",
        "38": "images\/38.png",
        "36": "images\/36.png",
        "64": "images\/64.png",
        "128": "images\/128.png"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*"
            ],
            "exclude_matches": [],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}  |  |