Github Saved Filters

Save your search filters for GitHub issues/PRs!

Τι είναι το Github Saved Filters;

Το Github Saved Filters είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://gsf-docs.4uroraskye.com, και η κύρια λειτουργία του είναι "Save your search filters for GitHub issues/PRs!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Manage filters that you commonly use on GitHub issues and pull requests pages.

The ability to save custom filters is not currently available using GitHub's current UI. This extension enables you to create, use and manage custom filters, in addition to some other handy features such as a Dates menu and ability to import multiple filters.

🆕 Now supporting GitHub Enterprise domains 🎉
🆕 Now also showing on global Issues and PRs pages 🎉

==================== ★★★ Features ★★★ =====================

✔ Create, Edit, Delete
✔ Search within
✔ Pin and unpin
✔ Import from any Gist (beta)
✔ Backup to your own Gist (beta)
✔ GitHub Enterprise domains support (beta)

★ 🆕 Backup and import (beta)
If you ever wanted a backup of your saved filters, you can back them up to your own secret Gist. Should you want to share that Gist ID with someone, they can then import your filters to use themselves. This works great for teams, if you all frequently make the same searches.

★ Change scope for each filter
Show your filter either only on the current repository you're in or show it on all repos and also on global issues/pull request pages.

★ Pin your most used filters
If you have several filters you use daily, pin them to the top of the filters menu for easy access.

★ Dates menu
Simplifies adding dates to and removing dates from your queries.

★ Handy popup when pinned to your extensions bar
Provides quick links to the docs, options and repos you have created filters for. Also shows you when there are new changes/features enabled.


============== ★★★ You own your own data ★★★ ===============
All filters you create are synced with your Chrome account, so no need to 
login or provide an access token (unless you want to use the backup or 
import features). Everything is right there where you need it to be, and 
updates across your devices automatically. 

This extension does not access any non-GitHub/external API's, databases 
or servers. What you see is achieved by manipulating the DOM and 
triggering GitHub's own requests to apply your selected filter/query to 
render the correct results. 

Your data is your own; it is tied to your own personal Chrome account, and
you own GitHub Gist(s), should you choose to use the backup feature. Thus
why the only permission needed for this extension is "storage".
============================================================                    

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

Όνομα Github Saved Filters Github Saved Filters
ID pmkbippobcmchabghaeonfbbcncjhmjm
Επίσημο URL https://chromewebstore.google.com/detail/github-saved-filters/pmkbippobcmchabghaeonfbbcncjhmjm
Περιγραφή Save your search filters for GitHub issues/PRs!
Μέγεθος Αρχείου 2.07 MB
Αριθμός Εγκαταστάσεων 550
Τρέχουσα Έκδοση 2.0.7
Τελευταία Ενημέρωση 2022-08-22
Ημερομηνία Δημοσίευσης 2020-10-11
Αξιολόγηση 4.67/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής https://gsf-docs.4uroraskye.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://ko-fi.com/auroraskye
Διεύθυνση URL της Σελίδας Βοήθειας https://gsf.featurebase.app
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Saved Filters",
    "description": "Save your search filters for GitHub issues\/PRs!",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/githubSavedFilters.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "css\/githubSavedFilters.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Github Saved Filters",
        "default_icon": {
            "16": "icons\/16.png"
        }
    },
    "options_page": "options.html",
    "version": "2.0.7",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}